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:
authorCampbell Barton <ideasman42@gmail.com>2012-02-23 06:36:30 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-23 06:36:30 +0400
commit190f5d17871a714bb864e271985ea6e4c5d6b3d0 (patch)
treeee2678fac93bf9e0d1e8696da65564650adf3551 /source/gameengine/Expressions
parentc8b53d2aaf7ee4d07736cf842ca385e0311f3c53 (diff)
code cleanup: dont set the namespace in STR_String.h - 'using namespace std', since this is included in many places.
Diffstat (limited to 'source/gameengine/Expressions')
-rw-r--r--source/gameengine/Expressions/Value.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/gameengine/Expressions/Value.h b/source/gameengine/Expressions/Value.h
index 10d8a8abd8f..917cf409198 100644
--- a/source/gameengine/Expressions/Value.h
+++ b/source/gameengine/Expressions/Value.h
@@ -26,6 +26,8 @@
#include <map> // array functionality for the propertylist
#include "STR_String.h" // STR_String class
+using namespace std;
+
#ifdef WITH_CXX_GUARDEDALLOC
#include "MEM_guardedalloc.h"
#endif