Browse Source

GCC 4.5 compatibility: no forward declarations for enums.

Vladimír Vondruš 13 years ago
parent
commit
79e79eee7e
  1. 2
      src/SceneGraph/SceneGraph.h

2
src/SceneGraph/SceneGraph.h

@ -85,7 +85,9 @@ template<class T = Float> using Animable2D = Animable<2, T>;
template<class T = Float> using Animable3D = Animable<3, T>;
#endif
#ifndef CORRADE_GCC45_COMPATIBILITY
enum class AnimationState: UnsignedByte;
#endif
template<UnsignedInt dimensions, class T = Float> class AnimableGroup;
#ifndef CORRADE_GCC46_COMPATIBILITY

Loading…
Cancel
Save