Warning flags during compilation
positiveblue opened this issue · 1 comments
positiveblue commented
Compiling the library throws some warnings. Basically
delete called on 'XXX' that is abstract but has non-virtual destructor [-Wdelete-non-virtual-dtor]
control reaches end of non-void function [-Wreturn-type]
private field 'XXX' is not used [-Wunused-private-field]
field 'XXX' will be initialized after field '_isGrowing' [-Wreorder]
The code needs to be fixed.
positiveblue commented
By now I am going to disable the warnings (tests show all the functionalities working) but would be great improve the code.