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:
Diffstat (limited to 'source/gameengine/Expressions/EXP_InputParser.h')
-rw-r--r--source/gameengine/Expressions/EXP_InputParser.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/gameengine/Expressions/EXP_InputParser.h b/source/gameengine/Expressions/EXP_InputParser.h
index 80471009a16..a59ca433024 100644
--- a/source/gameengine/Expressions/EXP_InputParser.h
+++ b/source/gameengine/Expressions/EXP_InputParser.h
@@ -75,21 +75,21 @@ private:
floattype,
stringtype
}; // all kinds of constants
-
+
int sym, // current symbol
opkind, // kind of operator, if symbol is an operator
constkind; // kind of operator, if symbol is a constant
-
+
char ch; // current character
int chcount; // index to character in input string
CExpression *errmsg; // contains a errormessage, if scanner error
-
+
STR_String text, // contains a copy of the original text
const_as_string; // string representation of the symbol, if symbol is a constant
bool boolvalue; // value of the boolean, if symbol is a constant of type boolean
CValue* m_identifierContext;// context in which identifiers are looked up
-
-
+
+
void ScanError(const char *str);
CExpression* Error(const char *str);
void NextCh();
@@ -107,8 +107,8 @@ private:
int Priority(int optor);
CExpression *Ex(int i);
CExpression *Expr();
-
-
+
+
#ifdef WITH_CXX_GUARDEDALLOC
MEM_CXX_CLASS_ALLOC_FUNCS("GE:CParser")
#endif