Commit 5e261420 by Linquize Committed by Carlos Martín Nieto

inttypes.h is built-in header file since MSVC 2013

The reason is that the types defined in libgit2's inttypes.h collide with system inttypes.h
3rd party library header files may directly reference MSVC's built-in inttypes.h

Fixes #3476
parent afed770e
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
# define GIT_END_DECL /* empty */ # define GIT_END_DECL /* empty */
#endif #endif
#ifdef _MSC_VER #if defined(_MSC_VER) && _MSC_VER < 1800
GIT_BEGIN_DECL GIT_BEGIN_DECL
# include "inttypes.h" # include "inttypes.h"
GIT_END_DECL GIT_END_DECL
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment