diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-02-08 18:36:47 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-02-08 18:36:47 +0300 |
commit | 714abae7efce1f4fcc37575370efab1a1cd44a49 (patch) | |
tree | c178d42a62d3660b81841257fe697b82794e4547 /src/resources/openglimagehelper.h | |
parent | 519d998fdec7feff3ec14876ab4c077759e374e4 (diff) | |
download | plus-714abae7efce1f4fcc37575370efab1a1cd44a49.tar.gz plus-714abae7efce1f4fcc37575370efab1a1cd44a49.tar.bz2 plus-714abae7efce1f4fcc37575370efab1a1cd44a49.tar.xz plus-714abae7efce1f4fcc37575370efab1a1cd44a49.zip |
Add missing variables into constructors initialisation list.
Diffstat (limited to 'src/resources/openglimagehelper.h')
-rw-r--r-- | src/resources/openglimagehelper.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/resources/openglimagehelper.h b/src/resources/openglimagehelper.h index a8e83c5d7..0c7e49c8f 100644 --- a/src/resources/openglimagehelper.h +++ b/src/resources/openglimagehelper.h @@ -59,7 +59,8 @@ class OpenGLImageHelper final : public ImageHelper public: OpenGLImageHelper() : - mFreeTextureIndex(0) + mFreeTextureIndex(0U), + mTextures() { } |