diff options
Diffstat (limited to 'src/gui/fonts/font.h')
-rw-r--r-- | src/gui/fonts/font.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gui/fonts/font.h b/src/gui/fonts/font.h index 997f04246..de35570e2 100644 --- a/src/gui/fonts/font.h +++ b/src/gui/fonts/font.h @@ -101,7 +101,8 @@ class Font final int getHeight() const restrict2 A_WARN_UNUSED; - const TextChunkList *getCache() const restrict2 A_CONST A_WARN_UNUSED; + const TextChunkList *getCache() const restrict2 noexcept + A_CONST A_WARN_UNUSED; /** * @see Font::drawString @@ -119,10 +120,10 @@ class Font final void slowLogic(const int rnd) restrict2; - int getCreateCounter() const restrict2 A_WARN_UNUSED + int getCreateCounter() const restrict2 noexcept A_WARN_UNUSED { return mCreateCounter; } - int getDeleteCounter() const restrict2 A_WARN_UNUSED + int getDeleteCounter() const restrict2 noexcept A_WARN_UNUSED { return mDeleteCounter; } int getStringIndexAt(const std::string &restrict text, |