Commit 2bf827d3 authored by Davis King's avatar Davis King

Another minor change to avoid warnings from visual studio

parent 784de304
......@@ -1121,15 +1121,15 @@ namespace
DLIB_TEST(sum(matrix_cast<int>(mat(labels)!=0)) == 9);
DLIB_TEST(sum(matrix_cast<int>(mat(labels)==0)) == (int)img1.size()-9);
DLIB_TEST(labels[4][3]);
DLIB_TEST(labels[4][4]);
DLIB_TEST(labels[4][5]);
DLIB_TEST(labels[3][3]);
DLIB_TEST(labels[3][4]);
DLIB_TEST(labels[3][5]);
DLIB_TEST(labels[5][3]);
DLIB_TEST(labels[5][4]);
DLIB_TEST(labels[5][5]);
DLIB_TEST(labels[4][3] != 0);
DLIB_TEST(labels[4][4] != 0);
DLIB_TEST(labels[4][5] != 0);
DLIB_TEST(labels[3][3] != 0);
DLIB_TEST(labels[3][4] != 0);
DLIB_TEST(labels[3][5] != 0);
DLIB_TEST(labels[5][3] != 0);
DLIB_TEST(labels[5][4] != 0);
DLIB_TEST(labels[5][5] != 0);
}
// ----------------------------------------------------------------------------------------
......
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