summaryrefslogtreecommitdiff
path: root/src/mbgl/gl/context.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/gl/context.hpp')
-rw-r--r--src/mbgl/gl/context.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mbgl/gl/context.hpp b/src/mbgl/gl/context.hpp
index d95311115e..c8181d7e80 100644
--- a/src/mbgl/gl/context.hpp
+++ b/src/mbgl/gl/context.hpp
@@ -36,10 +36,12 @@ class Debugging;
class ProgramBinary;
} // namespace extension
-class Context : private util::noncopyable {
+class Context {
public:
Context();
~Context();
+ Context(const Context&) = delete;
+ Context& operator=(const Context& other) = delete;
void initializeExtensions(const std::function<gl::ProcAddress(const char*)>&);