summaryrefslogtreecommitdiff
path: root/src/resources/animation/animation.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/animation/animation.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/animation/animation.cpp')
-rw-r--r--src/resources/animation/animation.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/resources/animation/animation.cpp b/src/resources/animation/animation.cpp
index 6eac889ed..22ca96fd7 100644
--- a/src/resources/animation/animation.cpp
+++ b/src/resources/animation/animation.cpp
@@ -25,6 +25,7 @@
#include "debug.h"
Animation::Animation() noexcept2 :
+ MemoryCounter(),
mFrames(),
mName("animation"),
mDuration(0)
@@ -32,6 +33,7 @@ Animation::Animation() noexcept2 :
}
Animation::Animation(const std::string &name) noexcept2 :
+ MemoryCounter(),
mFrames(),
mName(name),
mDuration(0)