diff --git a/src/Magnum/Platform/Screen.h b/src/Magnum/Platform/Screen.h index 55ee041eb..c0ca20772 100644 --- a/src/Magnum/Platform/Screen.h +++ b/src/Magnum/Platform/Screen.h @@ -36,13 +36,15 @@ namespace Magnum { namespace Platform { namespace Implementation { - enum class PropagatedScreenEvent: UnsignedByte { - Draw = 1 << 0, - Input = 1 << 1 - }; - typedef Containers::EnumSet PropagatedScreenEvents; - CORRADE_ENUMSET_OPERATORS(PropagatedScreenEvents) +enum class PropagatedScreenEvent: UnsignedByte { + Draw = 1 << 0, + Input = 1 << 1 +}; + +typedef Containers::EnumSet PropagatedScreenEvents; +CORRADE_ENUMSET_OPERATORS(PropagatedScreenEvents) + } /**