From d8e22a8b3c8999cf872b732d7d75ac349959580b Mon Sep 17 00:00:00 2001 From: Jonas Kulla Date: Sun, 29 Dec 2013 14:36:32 +0100 Subject: [PATCH] Remove unused definition --- src/glstate.h | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/src/glstate.h b/src/glstate.h index 2992dc6..bb1566f 100644 --- a/src/glstate.h +++ b/src/glstate.h @@ -59,25 +59,6 @@ private: std::stack stack; }; -// Not needed -template -struct GLPropSaver -{ - GLPropSaver(GLProperty &p) - : p(p) - { - p.push(); - } - - ~GLPropSaver() - { - p.pop(); - } - -private: - GLProperty &p; -}; - class GLClearColor : public GLProperty {