summaryrefslogtreecommitdiff
path: root/xml
diff options
context:
space:
mode:
Diffstat (limited to 'xml')
-rw-r--r--xml/function.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xml/function.c b/xml/function.c
index c9994e9..62c097f 100644
--- a/xml/function.c
+++ b/xml/function.c
@@ -54,7 +54,6 @@ bool cxFunction::Parse(const std::string &Text)
const char *text = Text.c_str();
const char *ptr = text, *last = text;
eType type = undefined_function;
- int inExpr = 0;
cxFunction *expr;
if (*ptr == '\'' || *ptr == '{') {
@@ -95,6 +94,7 @@ bool cxFunction::Parse(const std::string &Text)
}
else {
// expression
+ int inExpr = 0;
for (; *ptr; ++ptr) {
if (*ptr == '(') {
if (inExpr++ == 0) {