diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-04-20 16:40:24 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-04-20 16:40:24 +0300 |
commit | 1e9b7c519953c73c6e5ca4ce2169eb674267c115 (patch) | |
tree | 5e331bef424935c0f6d2a2291eb189cd50f68a3d /src/maplayer.h | |
parent | c63923c39572655f3d8e826b0fb2fd3ed253ae7f (diff) | |
download | plus-1e9b7c519953c73c6e5ca4ce2169eb674267c115.tar.gz plus-1e9b7c519953c73c6e5ca4ce2169eb674267c115.tar.bz2 plus-1e9b7c519953c73c6e5ca4ce2169eb674267c115.tar.xz plus-1e9b7c519953c73c6e5ca4ce2169eb674267c115.zip |
fix style in other files.
Diffstat (limited to 'src/maplayer.h')
-rw-r--r-- | src/maplayer.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/maplayer.h b/src/maplayer.h index d934817b0..ff9c4f6db 100644 --- a/src/maplayer.h +++ b/src/maplayer.h @@ -41,7 +41,8 @@ typedef std::vector<ImageVertexes*> MepRowImages; class MapRowVertexes final { public: - MapRowVertexes() + MapRowVertexes() : + images() { images.reserve(30); } @@ -68,8 +69,10 @@ class MapObject final class MapObjectList final { public: - MapObjectList() - { } + MapObjectList() : + objects() + { + } A_DELETE_COPY(MapObjectList) |