diff options
| author | 2018-09-28 10:29:54 +0200 | |
|---|---|---|
| committer | 2018-09-28 10:29:54 +0200 | |
| commit | 4dcc5ca9c840d16c9238aec2beb6783e85b28dfe (patch) | |
| tree | 887ca19c5432d257a9758745b7cf59896559df9f | |
| parent | 048154df39a7fa4f276a19bc4ee2bb0ee53ab46b (diff) | |
| parent | 8d3c21e2a89bf6ddc53845a45875a7d04a4bfdbc (diff) | |
| download | OneRoll-4dcc5ca9c840d16c9238aec2beb6783e85b28dfe.tar.gz OneRoll-4dcc5ca9c840d16c9238aec2beb6783e85b28dfe.zip | |
Merge branch 'master' of github.com:Rolisteam/DiceParser
| -rw-r--r-- | compositevalidator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compositevalidator.cpp b/compositevalidator.cpp index 7e003a4..863c94b 100644 --- a/compositevalidator.cpp +++ b/compositevalidator.cpp @@ -110,7 +110,7 @@ bool CompositeValidator::isValidRangeSize(std::pair<qint64,qint64> range) const int i = -1; for(Validator* tmp :*m_validatorList) { - quint64 rel = tmp->isValidRangeSize(range); + bool rel = tmp->isValidRangeSize(range); val |= rel; ++i; } |