diff --git a/src/Contexts/GlutWindowContext.cpp b/src/Contexts/GlutWindowContext.cpp index c94db351e..f06f4b38f 100644 --- a/src/Contexts/GlutWindowContext.cpp +++ b/src/Contexts/GlutWindowContext.cpp @@ -22,7 +22,7 @@ namespace Magnum { namespace Contexts { GlutWindowContext* GlutWindowContext::instance = nullptr; -GlutWindowContext::GlutWindowContext(int& argc, char** argv, const std::string& title, const Math::Vector2& size): argc(argc), argv(argv) { +GlutWindowContext::GlutWindowContext(int& argc, char** argv, const std::string& title, const Math::Vector2& size) { /* Save global instance */ instance = this; diff --git a/src/Contexts/GlutWindowContext.h b/src/Contexts/GlutWindowContext.h index f4dff7120..0f33c71fd 100644 --- a/src/Contexts/GlutWindowContext.h +++ b/src/Contexts/GlutWindowContext.h @@ -250,9 +250,6 @@ class GlutWindowContext: public AbstractWindowContext { static GlutWindowContext* instance; - int& argc; - char** argv; - Context* c; };