From 79e79eee7e64faa782b1268169fa601f94deec6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 17 Mar 2013 20:40:21 +0100 Subject: [PATCH] GCC 4.5 compatibility: no forward declarations for enums. --- src/SceneGraph/SceneGraph.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/SceneGraph/SceneGraph.h b/src/SceneGraph/SceneGraph.h index eb9d2232c..6c7b42a04 100644 --- a/src/SceneGraph/SceneGraph.h +++ b/src/SceneGraph/SceneGraph.h @@ -85,7 +85,9 @@ template using Animable2D = Animable<2, T>; template using Animable3D = Animable<3, T>; #endif +#ifndef CORRADE_GCC45_COMPATIBILITY enum class AnimationState: UnsignedByte; +#endif template class AnimableGroup; #ifndef CORRADE_GCC46_COMPATIBILITY