summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-12-23 01:49:01 +0300
committerAndrei Karas <akaras@inbox.ru>2015-12-23 01:49:01 +0300
commitb8835bb8f60ebaaedbf474624ffceb1b181c3036 (patch)
tree0153b7eb47d0399c9fe881d96b927f40586ded45
parent6257baccabe0f4477e7d3165e52ddf714dcff540 (diff)
downloadplus-b8835bb8f60ebaaedbf474624ffceb1b181c3036.tar.gz
plus-b8835bb8f60ebaaedbf474624ffceb1b181c3036.tar.bz2
plus-b8835bb8f60ebaaedbf474624ffceb1b181c3036.tar.xz
plus-b8835bb8f60ebaaedbf474624ffceb1b181c3036.zip
Add const attribute to resources.
-rw-r--r--src/resources/atlas/atlasmanager.h2
-rw-r--r--src/resources/beinginfo.h2
-rw-r--r--src/resources/db/emotedb.h2
-rw-r--r--src/resources/dye/dyepalette.h3
-rw-r--r--src/resources/sdlscreenshothelper.h2
5 files changed, 6 insertions, 5 deletions
diff --git a/src/resources/atlas/atlasmanager.h b/src/resources/atlas/atlasmanager.h
index b30981be6..28476dc2e 100644
--- a/src/resources/atlas/atlasmanager.h
+++ b/src/resources/atlas/atlasmanager.h
@@ -38,7 +38,7 @@ struct TextureAtlas;
class AtlasManager final
{
public:
- AtlasManager();
+ AtlasManager() A_CONST;
A_DELETE_COPY(AtlasManager)
diff --git a/src/resources/beinginfo.h b/src/resources/beinginfo.h
index 139c5e5c7..30bd01bd5 100644
--- a/src/resources/beinginfo.h
+++ b/src/resources/beinginfo.h
@@ -325,7 +325,7 @@ class BeingInfo final
void addMenu(const std::string &name, const std::string &command);
- const std::vector<BeingMenuItem> &getMenu() const;
+ const std::vector<BeingMenuItem> &getMenu() const A_CONST;
static void init();
diff --git a/src/resources/db/emotedb.h b/src/resources/db/emotedb.h
index 9372aa670..ec2c78dbb 100644
--- a/src/resources/db/emotedb.h
+++ b/src/resources/db/emotedb.h
@@ -54,7 +54,7 @@ namespace EmoteDB
const EmoteSprite *getSprite(const int id, const bool allowNull = false)
A_WARN_UNUSED;
- const int &getLast() A_WARN_UNUSED;
+ const int &getLast() A_CONST A_WARN_UNUSED;
int getIdByIndex(const int index);
diff --git a/src/resources/dye/dyepalette.h b/src/resources/dye/dyepalette.h
index 33d16fa50..1269d1511 100644
--- a/src/resources/dye/dyepalette.h
+++ b/src/resources/dye/dyepalette.h
@@ -79,7 +79,8 @@ class DyePalette final
void replaceAOGLColor(uint32_t *restrict pixels,
const int bufSize) const;
- static unsigned int hexDecode(const signed char c) A_WARN_UNUSED;
+ static unsigned int hexDecode(const signed char c)
+ A_CONST A_WARN_UNUSED;
private:
std::vector<DyeColor> mColors;
diff --git a/src/resources/sdlscreenshothelper.h b/src/resources/sdlscreenshothelper.h
index ff0989cd6..285fd400e 100644
--- a/src/resources/sdlscreenshothelper.h
+++ b/src/resources/sdlscreenshothelper.h
@@ -36,7 +36,7 @@ class SdlScreenshotHelper final : public ScreenshotHelper
~SdlScreenshotHelper();
- void prepare() override final;
+ void prepare() override final A_CONST;
SDL_Surface *getScreenshot() override final;
};