From: Mikko Rasa Date: Sun, 15 Dec 2013 23:23:50 +0000 (+0200) Subject: The Scope enum has no need to be public X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=commitdiff_plain;h=3acd9189d806129a6a2c06b15e035f11f679f5a8 The Scope enum has no need to be public --- diff --git a/source/programbuilder.h b/source/programbuilder.h index 6845f4a9..14a90a85 100644 --- a/source/programbuilder.h +++ b/source/programbuilder.h @@ -38,6 +38,7 @@ public: std::string create_flags() const; }; +private: enum VariableScope { NO_SCOPE, @@ -47,7 +48,6 @@ public: FRAGMENT }; -private: struct StandardVariable { VariableScope scope;