diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-08-18 13:16:31 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-08-18 14:24:11 +0100 |
commit | 089620728299ab1688edaf066e9f9790d67449aa (patch) | |
tree | ad6f09018d00118fd046ea154d3217369a3c7af4 /vcl/opengl/FixedTextureAtlas.cxx | |
parent | 7a31ae209304730e06e1f33333ebc81e7c7b5de9 (diff) |
cppcheck: noCopyConstructor
Change-Id: Id5323cb6f52666f85965e11b07e4f2bca8af4e78
Diffstat (limited to 'vcl/opengl/FixedTextureAtlas.cxx')
-rw-r--r-- | vcl/opengl/FixedTextureAtlas.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/vcl/opengl/FixedTextureAtlas.cxx b/vcl/opengl/FixedTextureAtlas.cxx index 7a980c9251e4..963818c17847 100644 --- a/vcl/opengl/FixedTextureAtlas.cxx +++ b/vcl/opengl/FixedTextureAtlas.cxx @@ -69,6 +69,10 @@ struct FixedTexture } return -1; } + +private: + FixedTexture(const FixedTexture&) = delete; + FixedTexture& operator=(const FixedTexture&) = delete; }; FixedTextureAtlasManager::FixedTextureAtlasManager(int nWidthFactor, int nHeightFactor, int nSubTextureSize) |