From 8a41475b74cc071711a8c8cf060ff451ed466a58 Mon Sep 17 00:00:00 2001 From: Gabi Davar Date: Fri, 19 Jun 2015 14:49:04 +0300 Subject: [PATCH] stdint is available in VS2008 (1600) --- src/stdint.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stdint.hpp b/src/stdint.hpp index 955e2bc2..9dfc8e14 100644 --- a/src/stdint.hpp +++ b/src/stdint.hpp @@ -36,7 +36,7 @@ #include -#elif defined _MSC_VER && _MSC_VER < 1600 +#elif defined _MSC_VER && _MSC_VER < 1500 #ifndef int8_t typedef __int8 int8_t;