diff options
| author | 2020-05-01 04:37:47 +0200 | |
|---|---|---|
| committer | 2020-05-01 04:37:47 +0200 | |
| commit | cdc2fcccdbdb40530ff1c63f70c43bf1100e3410 (patch) | |
| tree | 27fa234c20495dc455ec4c7b4f09104eab94dcda /include/parsingtoolbox.h | |
| parent | 2e09c80db228b5ac4043864e90e8c4c1e3284418 (diff) | |
| download | OneRoll-cdc2fcccdbdb40530ff1c63f70c43bf1100e3410.tar.gz OneRoll-cdc2fcccdbdb40530ff1c63f70c43bf1100e3410.zip | |
fix #82 return 0 for no reason.
Diffstat (limited to 'include/parsingtoolbox.h')
| -rw-r--r-- | include/parsingtoolbox.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/parsingtoolbox.h b/include/parsingtoolbox.h index f8e88af..f3031f2 100644 --- a/include/parsingtoolbox.h +++ b/include/parsingtoolbox.h @@ -381,7 +381,7 @@ private: QMap<QString, BooleanCondition::LogicOperator> m_logicOp; QMap<QString, ValidatorList::LogicOperation> m_logicOperation; QMap<QString, OperationCondition::ConditionOperator> m_conditionOperation; - QHash<QString, Die::ArithmeticOperator> m_arithmeticOperation; + std::vector<std::pair<QString, Die::ArithmeticOperator>> m_arithmeticOperation; QMap<QString, DiceOperator> m_mapDiceOp; QMap<QString, OptionOperator> m_OptionOp; QMap<QString, NodeAction> m_nodeActionMap; |