[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [20995] branches/blender2.5/blender/source /gameengine/Expressions/ListValue.cpp: don't include stdint.h directly, it' s broken on non C99 compliant compilers (you know which one I' m talking about).

Martin Poirier theeth at yahoo.com
Thu Jun 18 22:23:46 CEST 2009


Revision: 20995
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=20995
Author:   theeth
Date:     2009-06-18 22:23:46 +0200 (Thu, 18 Jun 2009)

Log Message:
-----------
don't include stdint.h directly, it's broken on non C99 compliant compilers (you know which one I'm talking about).

Modified Paths:
--------------
    branches/blender2.5/blender/source/gameengine/Expressions/ListValue.cpp

Modified: branches/blender2.5/blender/source/gameengine/Expressions/ListValue.cpp
===================================================================
--- branches/blender2.5/blender/source/gameengine/Expressions/ListValue.cpp	2009-06-18 20:13:17 UTC (rev 20994)
+++ branches/blender2.5/blender/source/gameengine/Expressions/ListValue.cpp	2009-06-18 20:23:46 UTC (rev 20995)
@@ -18,9 +18,10 @@
 #include "StringValue.h"
 #include "VoidValue.h"
 #include <algorithm>
-#include <stdint.h>
 #include "BoolValue.h"
 
+#include "BLO_sys_types.h" /* for intptr_t support */
+
 #ifdef HAVE_CONFIG_H
 #include <config.h>
 #endif





More information about the Bf-blender-cvs mailing list