Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Poirier <theeth@yahoo.com>2009-06-19 00:23:46 +0400
committerMartin Poirier <theeth@yahoo.com>2009-06-19 00:23:46 +0400
commit2269280910755a2be77fed2767a52f2026b0e55b (patch)
tree798a4fc11673136e420b1db9a0578409e2567ce9 /source/gameengine
parentdd250f7d85ba5ce0d44ec9dfb4ffb770813834aa (diff)
don't include stdint.h directly, it's broken on non C99 compliant compilers (you know which one I'm talking about).
Diffstat (limited to 'source/gameengine')
-rw-r--r--source/gameengine/Expressions/ListValue.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/gameengine/Expressions/ListValue.cpp b/source/gameengine/Expressions/ListValue.cpp
index d3df36fbff0..59344ddb7b7 100644
--- a/source/gameengine/Expressions/ListValue.cpp
+++ b/source/gameengine/Expressions/ListValue.cpp
@@ -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