From 2ea41f4f4f9f4ec730ef9036790882a427863430 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Wed, 13 Nov 2013 20:53:36 +0100 Subject: [PATCH] GCC 4.5 compatibility: no forward enum declarations. --- src/Text/Text.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Text/Text.h b/src/Text/Text.h index 4a0960e60..3baccb5ec 100644 --- a/src/Text/Text.h +++ b/src/Text/Text.h @@ -30,6 +30,8 @@ #include "Types.h" +#include + #include "magnumConfigure.h" namespace Magnum { namespace Text { @@ -40,7 +42,9 @@ class AbstractLayouter; class DistanceFieldGlyphCache; class GlyphCache; +#ifndef CORRADE_GCC45_COMPATIBILITY enum class Alignment: UnsignedByte; +#endif class AbstractRenderer; template class Renderer;