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-07-01 13:54:44 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-07-01 13:54:44 +0400
commit1597ad9377460453845b48af69ea888e32297cc1 (patch)
tree3cda36a62e12b9e19bb124dacfd97a6ac0c9b108 /source/gameengine/Expressions/Value.cpp
parent93cb7fb97b30641300185101526206253ef316b2 (diff)
style cleanup
Diffstat (limited to 'source/gameengine/Expressions/Value.cpp')
-rw-r--r--source/gameengine/Expressions/Value.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/gameengine/Expressions/Value.cpp b/source/gameengine/Expressions/Value.cpp
index 30bc33adddd..6507cc32cf1 100644
--- a/source/gameengine/Expressions/Value.cpp
+++ b/source/gameengine/Expressions/Value.cpp
@@ -406,7 +406,7 @@ CValue* CValue::GetProperty(int inIndex)
std::map<STR_String,CValue*>::iterator it;
for (it= m_pNamedPropertyArray->begin(); (it != m_pNamedPropertyArray->end()); it++)
{
- if (count++==inIndex)
+ if (count++ == inIndex)
{
result = (*it).second;
break;