From 51ff5644f0af1cec6b9a0cfbb1137b4414cdef83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 1 Aug 2019 18:00:56 +0200 Subject: [PATCH] Platform: minor cosmetic changes. --- src/Magnum/Platform/Screen.h | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) 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) + } /**