Fixed Android build warning

This commit is contained in:
Andrey Kamaev
2012-02-27 09:19:30 +00:00
parent 13456c9840
commit 32080ece8c

View File

@@ -688,7 +688,7 @@ struct Feature
int y; ///< y offset int y; ///< y offset
int label; ///< Quantization int label; ///< Quantization
Feature() {} Feature() : x(0), y(0), label(0) {}
Feature(int x, int y, int label) : x(x), y(y), label(label) {} Feature(int x, int y, int label) : x(x), y(y), label(label) {}
void read(const FileNode& fn); void read(const FileNode& fn);