From 418e7f9c0d0e90be5e1652e4d7520f8cfb890934 Mon Sep 17 00:00:00 2001 From: ExMix Date: Mon, 16 Dec 2013 13:47:41 +0300 Subject: [PATCH] Warning fix --- drape/shader.cpp | 1 - drape/shader.hpp | 1 - 2 files changed, 2 deletions(-) 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; };