Merge pull request #152 from redboltz/fix_inttypes_on_vc2010

https://github.com/msgpack/msgpack-c/issues/147
Fixed MSVC2010 doesn't have inttypes.h problem.
This commit is contained in:
Takatoshi Kondo
2014-10-31 11:31:17 +09:00

View File

@@ -20,7 +20,7 @@
#include <stdio.h>
#include <string.h>
#if !defined(_MSC_VER) || _MSC_VER >= 1600
#if !defined(_MSC_VER) || _MSC_VER >= 1700
#include <inttypes.h>
#endif