fix -Wsign-compare warnings

This commit is contained in:
Vladislav Vinogradov
2015-01-15 17:17:35 +03:00
parent df57d038b8
commit c120001178
2 changed files with 2 additions and 2 deletions

View File

@@ -664,7 +664,7 @@ private:
vector<Mat> pages;
bool res = imreadmulti(folder + "multipage.tif", pages, flags);
ASSERT_TRUE(res == true);
ASSERT_TRUE(pages.size() == page_count);
ASSERT_EQ(static_cast<size_t>(page_count), pages.size());
for (int i = 0; i < page_count; i++)
{