From a3a9f2bb796043b8e9b8693839a513e538226b57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 19 Jan 2014 12:58:15 +0100 Subject: [PATCH] GCC 4.5 compatibility: no forward enum declarations. --- src/Magnum/Platform/NaClApplication.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Magnum/Platform/NaClApplication.h b/src/Magnum/Platform/NaClApplication.h index 08c4fc433..7c5fb37b5 100644 --- a/src/Magnum/Platform/NaClApplication.h +++ b/src/Magnum/Platform/NaClApplication.h @@ -42,6 +42,10 @@ #include "Magnum/Math/Vector2.h" #include "Magnum/Platform/Platform.h" +#ifdef CORRADE_GCC45_COMPATIBILITY +#include "Magnum/Version.h" +#endif + namespace pp { class Graphics3D; class Fullscreen;