tmako123

Results 1 comments of tmako123

I think you also have to modify destructor. //fbow.h ``` ~Lx(){ if (feature != 0){ #if WIN32 _aligned_free(feature); #else free(feature); #endif } } ``` // fbow.cpp ``` Vocabulary::~Vocabulary(){ if (_data...