diff options
| author | 2019-02-02 12:23:30 +0100 | |
|---|---|---|
| committer | 2019-02-02 12:23:34 +0100 | |
| commit | 210a222b894caa3c8af38ccb6653db0fd8491f6e (patch) | |
| tree | aa1f1b33091d4552973c558fdd4106f92a3cb53d /die.cpp | |
| parent | 35f7acb8eb750631da2018f70b992e8043a1febb (diff) | |
| download | OneRoll-210a222b894caa3c8af38ccb6653db0fd8491f6e.tar.gz OneRoll-210a222b894caa3c8af38ccb6653db0fd8491f6e.zip | |
remove warnings
Diffstat (limited to 'die.cpp')
| -rw-r--r-- | die.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -155,7 +155,7 @@ void Die::roll(bool adding) quint64 Die::getFaces() const { - return abs(m_maxValue - m_base) + 1; + return std::abs(m_maxValue - m_base) + 1; } qint64 Die::getLastRolledValue() { |