aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Kellermann <max.kellermann@gmail.com>2018-06-08 19:07:14 +0200
committerMax Kellermann <max.kellermann@gmail.com>2018-06-10 23:58:12 +0200
commitd60cee599df8426b9670e04479ae46ef2908a414 (patch)
tree5af889b4efde0fe26caac892ac15ea3b187f54be
parent20b2cc1d6d91d5a4627f7d7758b1863db98e33c6 (diff)
guilib/MatrixGLES: remove unused non-const cast operator
-rw-r--r--xbmc/guilib/MatrixGLES.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/xbmc/guilib/MatrixGLES.h b/xbmc/guilib/MatrixGLES.h
index c358acfde7..cf092ae179 100644
--- a/xbmc/guilib/MatrixGLES.h
+++ b/xbmc/guilib/MatrixGLES.h
@@ -30,7 +30,6 @@ public:
CMatrixGL() { memset(&m_pMatrix, 0, sizeof(m_pMatrix)); };
explicit CMatrixGL(const float matrix[16]) { memcpy(m_pMatrix, matrix, sizeof(m_pMatrix)); }
- operator float*() { return m_pMatrix; }
operator const float*() const { return m_pMatrix; }
void LoadIdentity();