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:
authorKent Mein <mein@cs.umn.edu>2008-02-05 00:52:03 +0300
committerKent Mein <mein@cs.umn.edu>2008-02-05 00:52:03 +0300
commitfd7c729bd17d8c1d8e98003d27e47a58c1c258ec (patch)
treeae469f4c0351c6c8279afd8f19a97dacb6b83caf /intern/string
parentf11ea1eb8e51e9d2d236a4efb34e55b564eec7ba (diff)
This is patch: [#8216] Make blender compile with gcc 4.3
minus one small include file that was commented out, I'm not sure why it was commented out but I'm pretty sure its needed. If there are still problems later we can sort it out, everything else is pretty simple. Kent
Diffstat (limited to 'intern/string')
-rw-r--r--intern/string/STR_String.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/intern/string/STR_String.h b/intern/string/STR_String.h
index 2da2b57c6f2..7b02e6c1855 100644
--- a/intern/string/STR_String.h
+++ b/intern/string/STR_String.h
@@ -47,6 +47,10 @@
#include <vector>
#include <limits.h>
+
+#include <cstring>
+#include <cstdlib>
+
using namespace std;