summaryrefslogtreecommitdiff
path: root/src/resources/map/objectslayer.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-05-06 19:23:17 +0300
committerAndrei Karas <akaras@inbox.ru>2016-05-06 19:23:17 +0300
commitcc7367cd619a9e05931016c451f6925ccfb56356 (patch)
tree3cc73b06589efaad1ac7108a557f160749eb282d /src/resources/map/objectslayer.cpp
parent1f9f3f097b7acecda205fbc5a3f4846b84c00ab5 (diff)
downloadplus-cc7367cd619a9e05931016c451f6925ccfb56356.tar.gz
plus-cc7367cd619a9e05931016c451f6925ccfb56356.tar.bz2
plus-cc7367cd619a9e05931016c451f6925ccfb56356.tar.xz
plus-cc7367cd619a9e05931016c451f6925ccfb56356.zip
Add missing base classes into constructors initialization lists.
Diffstat (limited to 'src/resources/map/objectslayer.cpp')
-rw-r--r--src/resources/map/objectslayer.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/resources/map/objectslayer.cpp b/src/resources/map/objectslayer.cpp
index 7af758d7f..b121fbcf9 100644
--- a/src/resources/map/objectslayer.cpp
+++ b/src/resources/map/objectslayer.cpp
@@ -24,7 +24,9 @@
#include "debug.h"
-ObjectsLayer::ObjectsLayer(const unsigned width, const unsigned height) :
+ObjectsLayer::ObjectsLayer(const unsigned width,
+ const unsigned height) :
+ MemoryCounter(),
mTiles(new MapObjectList*[width * height]),
mWidth(width),
mHeight(height)