c++: "class has virtual functions but non-virtual destructor"

 在makefile或Android.bp中添加

cppflags: [
    "-Wno-non-virtual-dtor",
],

 可令编译器忽略此问题。不过不建议如此。

猜你喜欢

转载自www.cnblogs.com/hansenn/p/13187485.html