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/animation/animation.cpp | |
parent | 1f9f3f097b7acecda205fbc5a3f4846b84c00ab5 (diff) | |
download | plus-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.cpp | 2 |
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) |