diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-01-09 04:41:50 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-01-09 04:41:50 +0300 |
commit | 62471b26135021d75f1b9255ab613746ae2ad67a (patch) | |
tree | 6b5e8b29c6c9432ba03ce2fe06a5df4dc19e2ca3 /src/render/graphics.h | |
parent | e6704b8b023f5507be7b1bc5ba0b564e30e6e30f (diff) | |
download | manaverse-62471b26135021d75f1b9255ab613746ae2ad67a.tar.gz manaverse-62471b26135021d75f1b9255ab613746ae2ad67a.tar.bz2 manaverse-62471b26135021d75f1b9255ab613746ae2ad67a.tar.xz manaverse-62471b26135021d75f1b9255ab613746ae2ad67a.zip |
Remove useless A_CONST attributes.
Diffstat (limited to 'src/render/graphics.h')
-rw-r--r-- | src/render/graphics.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/render/graphics.h b/src/render/graphics.h index c34f6e333..35381bd21 100644 --- a/src/render/graphics.h +++ b/src/render/graphics.h @@ -258,7 +258,7 @@ class Graphics notfinal #ifdef USE_SDL2 const int height) restrict2; #else // USE_SDL2 - const int height) restrict2 A_CONST; + const int height) restrict2; #endif // USE_SDL2 /** @@ -414,7 +414,7 @@ class Graphics notfinal virtual void createGLContext(const bool custom) restrict2; #else // USE_SDL2 - virtual void createGLContext(const bool custom) restrict2 A_CONST; + virtual void createGLContext(const bool custom) restrict2; #endif // USE_SDL2 #endif // USE_OPENGL |