Skip to content

Commit

Permalink
fix some warnings on VS2010 on redefining INTxx_MIN, INTxx_MAX
Browse files Browse the repository at this point in the history
  • Loading branch information
aquynh committed Mar 6, 2017
1 parent bac2b3b commit d8ef491
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/platform.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ typedef unsigned char bool;
#if defined(CAPSTONE_HAS_OSXKERNEL) || (defined(_MSC_VER) && (_MSC_VER <= 1700 || defined(_KERNEL_MODE)))
// this system does not have inttypes.h

#if defined(_MSC_VER) && (_MSC_VER <= 1700 || defined(_KERNEL_MODE))
#if defined(_MSC_VER) && (_MSC_VER < 1600 || defined(_KERNEL_MODE))
// this system does not have stdint.h
typedef signed char int8_t;
typedef signed short int16_t;
Expand Down

0 comments on commit d8ef491

Please sign in to comment.