diff options
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 be02507..6ed6036 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; - foreach(int face, dice.keys()) + for(int face : dice.keys()) { QStringList result; ListDiceResult diceResult = dice.value(face); |