diff options
| author | 2019-01-05 18:17:17 +0100 | |
|---|---|---|
| committer | 2019-01-05 18:17:17 +0100 | |
| commit | 0fcbfc01baf4dc8fc42fe9a40033be14808c2c7f (patch) | |
| tree | aa3eac1c1d87d49d133a28916d0c49b901af5578 /node/groupnode.cpp | |
| parent | 0ead8d42d93ee5d91519f006a84a942109bf4f36 (diff) | |
| download | OneRoll-0fcbfc01baf4dc8fc42fe9a40033be14808c2c7f.tar.gz OneRoll-0fcbfc01baf4dc8fc42fe9a40033be14808c2c7f.zip | |
clazy warnings
Diffstat (limited to 'node/groupnode.cpp')
| -rw-r--r-- | node/groupnode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node/groupnode.cpp b/node/groupnode.cpp index c5b141d..a0bce3a 100644 --- a/node/groupnode.cpp +++ b/node/groupnode.cpp @@ -78,7 +78,7 @@ void GroupNode::run(ExecutionNode* previous) { auto list = dice->getResultList(); DieGroup allResult; - for(Die* die : dice->getResultList()) + for(auto& die : list) { allResult << die->getListValue(); } |