From 036963ea6289f9392803139bf593a9c3ab3d4bb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 29 Jun 2014 20:18:26 +0200 Subject: [PATCH] GCC 4.5 compatibility: cannot default function in class body. --- src/Magnum/Platform/Implementation/EglContextHandler.h | 5 ++++- src/Magnum/Platform/Implementation/GlxContextHandler.h | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Magnum/Platform/Implementation/EglContextHandler.h b/src/Magnum/Platform/Implementation/EglContextHandler.h index 3f1dc51d3..91751b637 100644 --- a/src/Magnum/Platform/Implementation/EglContextHandler.h +++ b/src/Magnum/Platform/Implementation/EglContextHandler.h @@ -57,7 +57,7 @@ Used in XEglApplication. */ class EglContextHandler: public AbstractContextHandler { public: - explicit EglContextHandler() = default; + explicit EglContextHandler(); ~EglContextHandler(); VisualId getVisualId(EGLNativeDisplayType nativeDisplay) override; @@ -78,6 +78,9 @@ class EglContextHandler: public AbstractContextHandler