diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-15 14:48:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-05-15 14:48:23 +0300 |
commit | cf1e1132c6cd84ab68a065153247671e83bf298f (patch) | |
tree | f35d5731ce05df57b375f2648f211bbd9bd6dfdc /src/resources/map/map.h | |
parent | 06a19f3327736f67907f012bd21bb1c0a21bb468 (diff) | |
download | plus-cf1e1132c6cd84ab68a065153247671e83bf298f.tar.gz plus-cf1e1132c6cd84ab68a065153247671e83bf298f.tar.bz2 plus-cf1e1132c6cd84ab68a065153247671e83bf298f.tar.xz plus-cf1e1132c6cd84ab68a065153247671e83bf298f.zip |
Fix compilation issue with old gcc.
Diffstat (limited to 'src/resources/map/map.h')
-rw-r--r-- | src/resources/map/map.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/resources/map/map.h b/src/resources/map/map.h index 89ef884c4..e8b3a8e97 100644 --- a/src/resources/map/map.h +++ b/src/resources/map/map.h @@ -411,10 +411,10 @@ class Map final : public Properties, public ConfigListener } const std::string file; - const int x; - const int y; - const int w; - const int h; + const2 int x; + const2 int y; + const2 int w; + const2 int h; }; std::vector<ParticleEffectData> mParticleEffects; |