Explorar o código

Use correct include file for INT_MAX

INT_MAX is defined in limits.h, not stdint.h
Joe Hermaszewski %!s(int64=10) %!d(string=hai) anos
pai
achega
7494cb6e4b
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      include/assimp/metadata.h

+ 1 - 1
include/assimp/metadata.h

@@ -50,7 +50,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #if defined(_MSC_VER) && (_MSC_VER <= 1500)
 #include "Compiler/pstdint.h"
 #else
-#include <stdint.h>
+#include <limits.h>
 #endif