objdetect: Properly check for C++11 as it's done in the matching .cpp file. Fixes...
authorColin Finck <colintest@bogusmail.com>
Mon, 28 Nov 2016 09:15:16 +0000 (10:15 +0100)
committerColin Finck <colintest@bogusmail.com>
Mon, 28 Nov 2016 09:15:16 +0000 (10:15 +0100)
modules/objdetect/include/opencv2/objdetect/detection_based_tracker.hpp

index 44213a8..b93c8f5 100644 (file)
@@ -46,7 +46,7 @@
 
 // After this condition removal update blacklist for bindings: modules/python/common.cmake
 #if defined(__linux__) || defined(LINUX) || defined(__APPLE__) || defined(__ANDROID__) || \
-  (defined(__cplusplus) &&  __cplusplus > 201103L) || (defined(_MSC_VER) && _MSC_VER >= 1700)
+  (defined(__cplusplus) &&  __cplusplus > 199711L) || (defined(_MSC_VER) && _MSC_VER >= 1700)
 
 #include <vector>