Skip to content

Commit

Permalink
Fix the _MSC_VER check so it compiles on non-windows compilers. Issue#91
Browse files Browse the repository at this point in the history
  • Loading branch information
hawicz committed Jun 24, 2013
1 parent 5e8df40 commit c629656
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion json_inttypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit c629656

Please sign in to comment.