From 3add98180c71140bdd6b938ed5076cccb95c955c Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 14 Apr 2015 15:50:51 +0000 Subject: [PATCH] From Philippe Renon, MingW build fix git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@14834 16af8721-9629-0410-8352-f15c8da7e697 --- src/osgPlugins/osgjs/JSON_Objects | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgPlugins/osgjs/JSON_Objects b/src/osgPlugins/osgjs/JSON_Objects index 9fc24db4e..fe17c41a4 100644 --- a/src/osgPlugins/osgjs/JSON_Objects +++ b/src/osgPlugins/osgjs/JSON_Objects @@ -20,7 +20,7 @@ #ifdef WIN32 -#if !defined(__MINGW32__) && (!defined(_MSC_VER) || _MSC_VER<1600) +#if defined(__MINGW32__) || (!defined(_MSC_VER) || _MSC_VER<1600) typedef unsigned __int8 uint8_t; typedef unsigned __int16 uint16_t;