diff options
| author | 2015-08-28 08:35:33 +0200 | |
|---|---|---|
| committer | 2015-08-28 08:35:33 +0200 | |
| commit | da1db7bc2436f94ab288d8da8d98a8209d3d2caa (patch) | |
| tree | 36ef8347fd70144dbd8bbef7d41365a8c31f1a06 /parsingtoolbox.cpp | |
| parent | 41b9202ef9102cb94e5b3fdcf8ce760509abaa49 (diff) | |
| download | OneRoll-da1db7bc2436f94ab288d8da8d98a8209d3d2caa.tar.gz OneRoll-da1db7bc2436f94ab288d8da8d98a8209d3d2caa.zip | |
fix cppcheck issue
Diffstat (limited to 'parsingtoolbox.cpp')
| -rw-r--r-- | parsingtoolbox.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/parsingtoolbox.cpp b/parsingtoolbox.cpp index f6b1f12..2d26d79 100644 --- a/parsingtoolbox.cpp +++ b/parsingtoolbox.cpp @@ -75,7 +75,6 @@ Validator* ParsingToolBox::readValidator(QString& str) { Validator* returnVal=NULL; bool expectSquareBrasket=false; - bool isOk = true; if((str.startsWith("["))) { str=str.remove(0,1); @@ -83,11 +82,13 @@ Validator* ParsingToolBox::readValidator(QString& str) } BooleanCondition::LogicOperator myLogicOp = BooleanCondition::Equal; - bool hasReadLogicOperator = readLogicOperator(str,myLogicOp); + //bool hasReadLogicOperator = + readLogicOperator(str,myLogicOp); int value=0; if(readNumber(str,value)) { + bool isOk = true; if(str.startsWith("-")) { str=str.remove(0,1); |