From 251610f6a1f0ecb72cfafb1c13b702cff257f939 Mon Sep 17 00:00:00 2001 From: jisli Date: Fri, 23 Oct 2015 15:25:26 -0700 Subject: [PATCH] fix header problem(can't find cstdint) on OSX platform --- modules/hal/include/opencv2/hal/defs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/hal/include/opencv2/hal/defs.h b/modules/hal/include/opencv2/hal/defs.h index f7d5f3556..d04f00387 100644 --- a/modules/hal/include/opencv2/hal/defs.h +++ b/modules/hal/include/opencv2/hal/defs.h @@ -270,7 +270,7 @@ */ #if !defined _MSC_VER && !defined __BORLANDC__ -# if defined __cplusplus && __cplusplus >= 201103L +# if defined __cplusplus && __cplusplus >= 201103L && !defined __APPLE__ # include typedef std::uint32_t uint; # else