diff options
| author | 2018-02-11 14:12:34 +0100 | |
|---|---|---|
| committer | 2018-02-11 14:12:34 +0100 | |
| commit | 4eeb6ff50f3153c3e139507d99efdf2bc1b9314c (patch) | |
| tree | 69ab074f0b447b7c51db7b3ebae3b00d78837c27 /booleancondition.cpp | |
| parent | c91825765ec899f1c6260b914ecb785a071699ba (diff) | |
| download | OneRoll-4eeb6ff50f3153c3e139507d99efdf2bc1b9314c.tar.gz OneRoll-4eeb6ff50f3153c3e139507d99efdf2bc1b9314c.zip | |
-fix non return value.
Diffstat (limited to 'booleancondition.cpp')
| -rw-r--r-- | booleancondition.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/booleancondition.cpp b/booleancondition.cpp index 09140f7..5b2212f 100644 --- a/booleancondition.cpp +++ b/booleancondition.cpp @@ -127,6 +127,7 @@ quint64 BooleanCondition::getValidRangeSize(quint64 faces) const case Different: return faces-1; } + return 0; } Validator* BooleanCondition::getCopy() const { |