Commit 2f88062d authored by Andrey Kamaev's avatar Andrey Kamaev

Fixed Android build warning

parent 67a336e0
......@@ -1066,7 +1066,7 @@ TEST(Features2d_BruteForceDescriptorMatcher_knnMatch, regression)
matcher->knnMatch(descQ, descT, matches, k);
//cout << "\nBest " << k << " matches to " << descT.rows << " train desc-s." << endl;
ASSERT_EQ(descQ.rows, matches.size());
ASSERT_EQ(descQ.rows, static_cast<int>(matches.size()));
for(size_t i = 0; i<matches.size(); i++)
{
//cout << "\nmatches[" << i << "].size()==" << matches[i].size() << endl;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment