From 2492b561385859b7ef76fe816a8dc845f0b9bd09 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 7 Feb 2016 01:53:51 +0300 Subject: Fix some casts between signed and unsigned in some files. --- src/gui/fonts/font.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/gui/fonts/font.h') diff --git a/src/gui/fonts/font.h b/src/gui/fonts/font.h index de35570e2..2a3131fa3 100644 --- a/src/gui/fonts/font.h +++ b/src/gui/fonts/font.h @@ -120,10 +120,10 @@ class Font final void slowLogic(const int rnd) restrict2; - int getCreateCounter() const restrict2 noexcept A_WARN_UNUSED + unsigned int getCreateCounter() const restrict2 noexcept A_WARN_UNUSED { return mCreateCounter; } - int getDeleteCounter() const restrict2 noexcept A_WARN_UNUSED + unsigned int getDeleteCounter() const restrict2 noexcept A_WARN_UNUSED { return mDeleteCounter; } int getStringIndexAt(const std::string &restrict text, @@ -140,8 +140,8 @@ class Font final const int size); TTF_Font *restrict mFont; - unsigned mCreateCounter; - unsigned mDeleteCounter; + unsigned int mCreateCounter; + unsigned int mDeleteCounter; // Word surfaces cache int mCleanTime; -- cgit v1.2.3-60-g2f50