diff options
| author | 2017-11-25 02:51:23 +0100 | |
|---|---|---|
| committer | 2017-11-25 02:51:23 +0100 | |
| commit | 95d4b12f2900f13e5836cb460261c96889bdd4e5 (patch) | |
| tree | afcf71441e868fbd215eb68da69229e1b458a92d /cli/main.cpp | |
| parent | 6769063ea8a41a568b06c63b797bc26c3c5a1c6d (diff) | |
| download | OneRoll-95d4b12f2900f13e5836cb460261c96889bdd4e5.tar.gz OneRoll-95d4b12f2900f13e5836cb460261c96889bdd4e5.zip | |
remove useless commit
Diffstat (limited to 'cli/main.cpp')
| -rw-r--r-- | cli/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/main.cpp b/cli/main.cpp index 6ed6036..be02507 100644 --- a/cli/main.cpp +++ b/cli/main.cpp @@ -151,7 +151,7 @@ QString diceToText(QList<ExportedDiceResult>& diceList,bool highlight,bool homog for(auto dice : diceList) { QStringList resultGlobal; - for(int face : dice.keys()) + foreach(int face, dice.keys()) { QStringList result; ListDiceResult diceResult = dice.value(face); |