diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-05-06 19:23:17 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-05-06 19:23:17 +0300 |
commit | cc7367cd619a9e05931016c451f6925ccfb56356 (patch) | |
tree | 3cc73b06589efaad1ac7108a557f160749eb282d /src/resources/map/objectslayer.cpp | |
parent | 1f9f3f097b7acecda205fbc5a3f4846b84c00ab5 (diff) | |
download | manaverse-cc7367cd619a9e05931016c451f6925ccfb56356.tar.gz manaverse-cc7367cd619a9e05931016c451f6925ccfb56356.tar.bz2 manaverse-cc7367cd619a9e05931016c451f6925ccfb56356.tar.xz manaverse-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.cpp | 4 |
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) |