diff options
| author | 2018-04-11 00:17:46 +0200 | |
|---|---|---|
| committer | 2018-04-11 00:18:05 +0200 | |
| commit | 395d723d7839776319e5e69fba9bc6a6433a17a8 (patch) | |
| tree | fdb5628855a8b76c8bf5201f7b14b444c10dbe35 /diceparser.cpp | |
| parent | 4980023197d0797aae212cb79b0becdc6c830e11 (diff) | |
| download | OneRoll-395d723d7839776319e5e69fba9bc6a6433a17a8.tar.gz OneRoll-395d723d7839776319e5e69fba9bc6a6433a17a8.zip | |
-CleanUp
Diffstat (limited to 'diceparser.cpp')
| -rw-r--r-- | diceparser.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/diceparser.cpp b/diceparser.cpp index f23cad4..8deb691 100644 --- a/diceparser.cpp +++ b/diceparser.cpp @@ -180,8 +180,6 @@ bool DiceParser::parseLine(QString str, bool allowAlias) bool DiceParser::readExpression(QString& str,ExecutionNode* & node) { ExecutionNode* operandNode=nullptr; - QString result; - QString comment; if(m_parsingToolbox->readOpenParentheses(str)) { ExecutionNode* internalNode=nullptr; @@ -192,7 +190,6 @@ bool DiceParser::readExpression(QString& str,ExecutionNode* & node) node = parentheseNode; if(m_parsingToolbox->readCloseParentheses(str)) { - ExecutionNode* diceNode=nullptr; if(readDice(str,diceNode)) { |