summaryrefslogtreecommitdiff
path: root/src/maplayer.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/maplayer.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/maplayer.h')
-rw-r--r--src/maplayer.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/maplayer.h b/src/maplayer.h
index 75dba70b9..134a7ac39 100644
--- a/src/maplayer.h
+++ b/src/maplayer.h
@@ -46,7 +46,7 @@ class MapRowVertexes final
images.reserve(30);
}
- A_DELETE_COPY(MapRowVertexes);
+ A_DELETE_COPY(MapRowVertexes)
~MapRowVertexes();
@@ -71,7 +71,7 @@ class MapObjectList final
MapObjectList()
{ }
- A_DELETE_COPY(MapObjectList);
+ A_DELETE_COPY(MapObjectList)
std::vector<MapObject> objects;
};
@@ -93,7 +93,7 @@ class MapLayer final: public ConfigListener
MapLayer(const int x, const int y, const int width, const int height,
const bool isFringeLayer);
- A_DELETE_COPY(MapLayer);
+ A_DELETE_COPY(MapLayer)
/**
* Destructor.
@@ -198,7 +198,7 @@ class SpecialLayer final
SpecialLayer(const int width, const int height,
const bool drawSprites = false);
- A_DELETE_COPY(SpecialLayer);
+ A_DELETE_COPY(SpecialLayer)
~SpecialLayer();
@@ -259,7 +259,7 @@ class MapItem final
MapItem(const int type, std::string comment, const int x, const int y);
- A_DELETE_COPY(MapItem);
+ A_DELETE_COPY(MapItem)
~MapItem();
@@ -305,7 +305,7 @@ class ObjectsLayer final
public:
ObjectsLayer(const unsigned width, const unsigned height);
- A_DELETE_COPY(ObjectsLayer);
+ A_DELETE_COPY(ObjectsLayer)
~ObjectsLayer();