diff options
Diffstat (limited to 'AK/Checked.h')
-rw-r--r-- | AK/Checked.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/AK/Checked.h b/AK/Checked.h index d4e9a84a81..d0877082b4 100644 --- a/AK/Checked.h +++ b/AK/Checked.h @@ -166,13 +166,13 @@ public: return m_overflow; } - bool operator!() const + ALWAYS_INLINE bool operator!() const { ASSERT(!m_overflow); return !m_value; } - T value() const + ALWAYS_INLINE T value() const { ASSERT(!m_overflow); return m_value; |