From 752b10e41040c337a27d8b190089067ca6500a0b Mon Sep 17 00:00:00 2001 From: Eric Sommerlade Date: Mon, 31 Oct 2016 13:48:41 +0000 Subject: [PATCH] fixed _MSC_VER check for at least 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 5b25282702..be61b872fd 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>1800) +#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)