Skip to content

Commit

Permalink
[matching] correct emplace_back
Browse files Browse the repository at this point in the history
  • Loading branch information
simogasp authored Feb 27, 2018
1 parent 9361b68 commit 460bded
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aliceVision/matching/ArrayMatcher_kdtreeFlann.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class ArrayMatcher_kdtreeFlann : public ArrayMatcher<Scalar, Metric>
{
for (size_t j = 0; j < NN; ++j)
{
pvec_indices->emplace_back(IndMatch(i, vec_indices[i*NN+j]));
pvec_indices->emplace_back(i, vec_indices[i*NN+j]);
pvec_distances->emplace_back(vec_distances[i*NN+j]);
}
}
Expand Down

0 comments on commit 460bded

Please sign in to comment.