diff --git a/drape/shader.cpp b/drape/shader.cpp index 2e30b4f90c..4a6fe3bc59 100644 --- a/drape/shader.cpp +++ b/drape/shader.cpp @@ -18,7 +18,6 @@ Shader::Shader(const string & shaderSource, Type type) : m_source(shaderSource) , m_type(type) , m_glID(0) - , m_refCount(0) { m_glID = GLFunctions::glCreateShader(convert(m_type)); GLFunctions::glShaderSource(m_glID, m_source); diff --git a/drape/shader.hpp b/drape/shader.hpp index f268f84e4a..9348bf2720 100644 --- a/drape/shader.hpp +++ b/drape/shader.hpp @@ -21,5 +21,4 @@ private: const string m_source; Type m_type; uint32_t m_glID; - int32_t m_refCount; };