diff options
| -rw-r--r-- | parsingtoolbox.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/parsingtoolbox.cpp b/parsingtoolbox.cpp index 1c9dc90..00dfe81 100644 --- a/parsingtoolbox.cpp +++ b/parsingtoolbox.cpp @@ -100,8 +100,8 @@ bool ParsingToolBox::readArithmeticOperator(QString &str, ScalarOperatorNode::Ar { bool found = false; //QHash<QString,ScalarOperatorNode::ArithmeticOperator>::Iterator - auto i = m_arithmeticOperation->begin(); - for(; i !=m_arithmeticOperation->end() && !found; ++i) + + for(auto i = m_arithmeticOperation->begin() ; i !=m_arithmeticOperation->end() && !found; ++i) { if(str.startsWith(i.key())) { |