From 72e4e9d43dfe3fe655f4527f3c087f07095fad6e Mon Sep 17 00:00:00 2001 From: Eric Sommerlade Date: Mon, 31 Oct 2016 13:46:22 +0000 Subject: [PATCH] fixed _MSC_VER check for vs2013 in dbt_face_detection sample --- samples/cpp/dbt_face_detection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/cpp/dbt_face_detection.cpp b/samples/cpp/dbt_face_detection.cpp index 0b465cdc23..5b25282702 100644 --- a/samples/cpp/dbt_face_detection.cpp +++ b/samples/cpp/dbt_face_detection.cpp @@ -1,4 +1,4 @@ -#if defined(__linux__) || defined(LINUX) || defined(__APPLE__) || defined(ANDROID) || (defined(_MSC_VER) && _MSC_VER>1700) +#if defined(__linux__) || defined(LINUX) || defined(__APPLE__) || defined(ANDROID) || (defined(_MSC_VER) && _MSC_VER>1800) #include // Gaussian Blur #include // Basic OpenCV structures (cv::Mat, Scalar)