fix gcc C++11 bug mentioned in http://answers.opencv.org/question/283 . Bug also fixed in FLANN upstream
This commit is contained in:
parent
507f546158
commit
3df72fe669
@ -193,7 +193,7 @@ public:
|
|||||||
void add(Matrix<ElementType> dataset)
|
void add(Matrix<ElementType> dataset)
|
||||||
{
|
{
|
||||||
#if USE_UNORDERED_MAP
|
#if USE_UNORDERED_MAP
|
||||||
if (!use_speed_) buckets_space_.rehash((buckets_space_.size() + dataset.rows) * 1.2);
|
buckets_space_.rehash((buckets_space_.size() + dataset.rows) * 1.2);
|
||||||
#endif
|
#endif
|
||||||
// Add the features to the table
|
// Add the features to the table
|
||||||
for (unsigned int i = 0; i < dataset.rows; ++i) add(i, dataset[i]);
|
for (unsigned int i = 0; i < dataset.rows; ++i) add(i, dataset[i]);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user