mirror of https://github.com/opencv/opencv.git
Conflicts: modules/contrib/src/inputoutput.cpp modules/gpu/perf/perf_imgproc.cpp modules/gpuarithm/perf/perf_element_operations.cpp modules/gpuarithm/src/element_operations.cpp modules/ts/src/precomp.hpppull/1348/head
commit
4d06c4c7b6
12 changed files with 67 additions and 44 deletions
@ -1,3 +1,8 @@ |
||||
#include "perf_precomp.hpp" |
||||
#ifdef _MSC_VER |
||||
# if _MSC_VER >= 1700 |
||||
# pragma warning(disable:4447) // Disable warning 'main' signature found without threading model
|
||||
# endif |
||||
#endif |
||||
|
||||
CV_PERF_TEST_MAIN(core) |
||||
|
@ -1,7 +1,10 @@ |
||||
#ifdef HAVE_WINRT |
||||
#pragma warning(disable:4447) // Disable warning 'main' signature found without threading model
|
||||
#ifdef _MSC_VER |
||||
# if _MSC_VER >= 1700 |
||||
# pragma warning(disable:4447) // Disable warning 'main' signature found without threading model
|
||||
# endif |
||||
#endif |
||||
|
||||
|
||||
#include "test_precomp.hpp" |
||||
|
||||
CV_TEST_MAIN("cv") |
||||
|
Loading…
Reference in new issue