1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00

inserted missing std:: (ticket #333). Thanks to trisk for the patch!

This commit is contained in:
Vadim Pisarevsky
2010-07-29 10:55:09 +00:00
parent 97254a7b45
commit 0faa75da11
7 changed files with 19 additions and 15 deletions
+2 -2
View File
@@ -886,8 +886,8 @@ void CvTest::run( int start_from )
break;
}
sort(v_cpe.begin(), v_cpe.end());
sort(v_time.begin(), v_time.end());
std::sort(v_cpe.begin(), v_cpe.end());
std::sort(v_time.begin(), v_time.end());
t_cpu_acc = v_cpe[i/2];
t_acc = v_time[i/2];