summaryrefslogtreecommitdiff
path: root/src/map.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-10-15 15:15:39 +0300
committerAndrei Karas <akaras@inbox.ru>2012-10-15 15:15:39 +0300
commitb2b348d4baf2891fd82635e068a4f64d2694ba6d (patch)
treec26a27f24697c0a3d925e1ee54239edf78dd6921 /src/map.h
parentb675c9444e268238f836fcd0deb827233df3d012 (diff)
downloadplus-b2b348d4baf2891fd82635e068a4f64d2694ba6d.tar.gz
plus-b2b348d4baf2891fd82635e068a4f64d2694ba6d.tar.bz2
plus-b2b348d4baf2891fd82635e068a4f64d2694ba6d.tar.xz
plus-b2b348d4baf2891fd82635e068a4f64d2694ba6d.zip
Fix compilation warnings without C++11 support.
Diffstat (limited to 'src/map.h')
-rw-r--r--src/map.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map.h b/src/map.h
index 803a400af..f7b702843 100644
--- a/src/map.h
+++ b/src/map.h
@@ -66,7 +66,7 @@ struct MetaTile final
parentX(0), parentY(0), blockmask(0)
{}
- A_DELETE_COPY(MetaTile);
+ A_DELETE_COPY(MetaTile)
// Pathfinding members
int Fcost; /**< Estimation of total path cost */
@@ -88,7 +88,7 @@ class TileAnimation final
~TileAnimation();
- A_DELETE_COPY(TileAnimation);
+ A_DELETE_COPY(TileAnimation)
bool update(const int ticks = 1);
@@ -160,7 +160,7 @@ class Map final : public Properties, public ConfigListener
Map(const int width, const int height,
const int tileWidth, const int tileHeight);
- A_DELETE_COPY(Map);
+ A_DELETE_COPY(Map)
/**
* Destructor.