Commit 04399a27 authored by yao's avatar yao

fix a warning

parent 03c55db4
...@@ -140,7 +140,7 @@ PERFTEST(Split) ...@@ -140,7 +140,7 @@ PERFTEST(Split)
if(d_dst.size() == dst.size()) if(d_dst.size() == dst.size())
{ {
TestSystem::instance().setAccurate(1); TestSystem::instance().setAccurate(1);
for(int i = 0; i < dst.size(); i++) for(size_t i = 0; i < dst.size(); i++)
{ {
if(ExpectedMatNear(dst[i], cv::Mat(d_dst[i]), 0.0) == 0) if(ExpectedMatNear(dst[i], cv::Mat(d_dst[i]), 0.0) == 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