Commit 4ec5fb43 authored by Alexey Spizhevoy's avatar Alexey Spizhevoy

fixed some warnings

parent 5e855664
......@@ -761,7 +761,7 @@ TEST(projectPoints)
camera_mat.at<float>(2, 0) = 0.f;
camera_mat.at<float>(2, 1) = 0.f;
for (int size = 1e6, count = 0; size >= 1e5 && count < 5; size /= 1.4, count++)
for (int size = (int)1e6, count = 0; size >= 1e5 && count < 5; size = int(size / 1.4), count++)
{
SUBTEST << "size " << size;
......
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