Unverified Commit aea6eaf8 by Edward Thomson Committed by GitHub

Merge pull request #6666 from csware/fix-macro-redifinition

Avoid macro redefinition of ENABLE_INTSAFE_SIGNED_FUNCTIONS
parents 3bee8d5f a6164cb4
......@@ -89,7 +89,9 @@ GIT_INLINE(int) git__is_int(int64_t p)
/* Use Microsoft's safe integer handling functions where available */
#elif defined(_MSC_VER)
# if !defined(ENABLE_INTSAFE_SIGNED_FUNCTIONS)
# define ENABLE_INTSAFE_SIGNED_FUNCTIONS
# endif
# include <intsafe.h>
# define git__add_sizet_overflow(out, one, two) \
......
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