diff options
| author | 2019-01-05 18:17:17 +0100 | |
|---|---|---|
| committer | 2019-01-05 18:17:17 +0100 | |
| commit | 0fcbfc01baf4dc8fc42fe9a40033be14808c2c7f (patch) | |
| tree | aa3eac1c1d87d49d133a28916d0c49b901af5578 /node/bind.cpp | |
| parent | 0ead8d42d93ee5d91519f006a84a942109bf4f36 (diff) | |
| download | OneRoll-0fcbfc01baf4dc8fc42fe9a40033be14808c2c7f.tar.gz OneRoll-0fcbfc01baf4dc8fc42fe9a40033be14808c2c7f.zip | |
clazy warnings
Diffstat (limited to 'node/bind.cpp')
| -rw-r--r-- | node/bind.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node/bind.cpp b/node/bind.cpp index a179069..9598c45 100644 --- a/node/bind.cpp +++ b/node/bind.cpp @@ -45,7 +45,7 @@ void BindNode::run(ExecutionNode* previous) if(nullptr!=dice) { m_diceResult->setHomogeneous(false); - for(Die* die : dice->getResultList()) + for(auto& die : dice->getResultList()) { if(!die->hasBeenDisplayed()) { |