Skip to content

Commit 5401660

Browse files
committed
Fixed #255. MSVC2012(_MSC_VER=1700) doesn't have inttypes.h.
1 parent f3caa8e commit 5401660

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/objectc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include <stdio.h>
2121
#include <string.h>
2222

23-
#if !defined(_MSC_VER) || _MSC_VER >= 1700
23+
#if !defined(_MSC_VER) || _MSC_VER >= 1800
2424
#include <inttypes.h>
2525
#endif
2626

0 commit comments

Comments
 (0)