diff options
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(); } |