aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/range.cpp
diff options
context:
space:
mode:
authorRenaud G <renaud@rolisteam.org>2017-11-25 02:51:23 +0100
committerRenaud G <renaud@rolisteam.org>2017-11-25 02:51:23 +0100
commit95d4b12f2900f13e5836cb460261c96889bdd4e5 (patch)
treeafcf71441e868fbd215eb68da69229e1b458a92d /range.cpp
parent6769063ea8a41a568b06c63b797bc26c3c5a1c6d (diff)
downloadOneRoll-95d4b12f2900f13e5836cb460261c96889bdd4e5.tar.gz
OneRoll-95d4b12f2900f13e5836cb460261c96889bdd4e5.zip
remove useless commit
Diffstat (limited to 'range.cpp')
-rw-r--r--range.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/range.cpp b/range.cpp
index 081e253..39a46ce 100644
--- a/range.cpp
+++ b/range.cpp
@@ -41,7 +41,7 @@ qint64 Range::hasValid(Die* m,bool recursive, bool unhighlight) const
qint64 result = 0;
if(recursive)
{
- for(qint64 value: m->getListValue())
+ foreach(qint64 value, m->getListValue())
{
if((value>=m_start)&&(value<=m_end))
{