From e4b3316c360085ced026087e82b0e31aaba57532 Mon Sep 17 00:00:00 2001 From: Ben Vanik Date: Sat, 17 Oct 2015 09:18:37 -0700 Subject: [PATCH] Lint fix. --- src/el/types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/el/types.h b/src/el/types.h index c9f0035..d11c6da 100644 --- a/src/el/types.h +++ b/src/el/types.h @@ -52,8 +52,8 @@ namespace el { constexpr Enum operator^(Enum a, Enum b) { \ return static_cast(static_cast(a) ^ \ static_cast(b)); \ - } inline void \ - operator|=(Enum& a, Enum b) { \ + } \ + inline void operator|=(Enum& a, Enum b) { \ a = static_cast(static_cast(a) | \ static_cast(b)); \ } \