Skip to content

Commit

Permalink
Merge pull request #14 from pzychotic/community
Browse files Browse the repository at this point in the history
Do not define INT8_MAX et al for VS2012+
  • Loading branch information
BSVino committed Feb 3, 2015
2 parents 7eeb940 + 9c50f89 commit 74fc37c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/EABase/config/eacompiler.h
Expand Up @@ -352,8 +352,8 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

# endif

// 1800 is VS12 (2013) which appears to already have these.
#if defined(_MSC_VER) && _MSC_VER >= 1800
// 1700 is VC11 (VS2012) which appears to already have these.
#if defined(_MSC_VER) && _MSC_VER >= 1700
#define INT8_MAX_DEFINED
#define INT8_C_DEFINED
#endif
Expand Down

0 comments on commit 74fc37c

Please sign in to comment.