Browse Source

fix travis build

Signed-off-by: Kim Kulling <[email protected]>
Kim Kulling 10 years ago
parent
commit
97946e25c9
1 changed files with 8 additions and 2 deletions
  1. 8 2
      code/fast_atof.h

+ 8 - 2
code/fast_atof.h

@@ -21,8 +21,14 @@
 #include <stdexcept>
 
 #include "StringComparison.h"
-//#include "../include/assimp/Compiler/pstdint.h"
-#include <stdint.h>
+
+
+#ifdef _MSC_VER 
+#  include <stdint.h>
+#else 
+#include "../include/assimp/Compiler/pstdint.h"
+#endif
+
 namespace Assimp
 {