commit | c62965660b10d76671116986189c2d5cbba5c0d9 | [log] [tgz] |
---|---|---|
author | Eric Haszlakiewicz <erh+git@nimenees.com> | Sun Jun 23 19:12:14 2013 -0500 |
committer | Eric Haszlakiewicz <erh+git@nimenees.com> | Sun Jun 23 19:12:14 2013 -0500 |
tree | 06e1de8b8fe656582343752cb27a45c1f2dac75a | |
parent | 5e8df40523e59c57017a2d160cca06c3503f68c1 [diff] |
Fix the _MSC_VER check so it compiles on non-windows compilers. Issue#91
diff --git a/json_inttypes.h b/json_inttypes.h index bfe1060..9de8d24 100644 --- a/json_inttypes.h +++ b/json_inttypes.h
@@ -4,7 +4,7 @@ #include "json_config.h" -#if defined(_MSC_VER) && _MSC_VER =< 1700 +#if defined(_MSC_VER) && _MSC_VER <= 1700 /* Anything less than Visual Studio C++ 10 is missing stdint.h and inttypes.h */ typedef __int32 int32_t;