From 5583bab9d495eaf328605aa40906a503e215760f Mon Sep 17 00:00:00 2001 From: Rainer Deyke Date: Mon, 4 Apr 2022 15:07:29 +0200 Subject: [PATCH] Fixed indents --- core/os/keyboard.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/os/keyboard.h b/core/os/keyboard.h index 556ba3638e2..86b86fb970b 100644 --- a/core/os/keyboard.h +++ b/core/os/keyboard.h @@ -315,7 +315,7 @@ constexpr Key operator-(uint32_t a, Key b) { } constexpr Key &operator-=(Key &a, int b) { - a = static_cast(static_cast(a) - static_cast(b)); + a = static_cast(static_cast(a) - static_cast(b)); return a; } @@ -340,17 +340,17 @@ constexpr Key operator|(Key a, Key b) { } constexpr Key &operator|=(Key &a, Key b) { - a = static_cast(static_cast(a) | static_cast(b)); + a = static_cast(static_cast(a) | static_cast(b)); return a; } constexpr Key &operator|=(Key &a, KeyModifierMask b) { - a = static_cast(static_cast(a) | static_cast(b)); + a = static_cast(static_cast(a) | static_cast(b)); return a; } constexpr Key &operator&=(Key &a, KeyModifierMask b) { - a = static_cast(static_cast(a) & static_cast(b)); + a = static_cast(static_cast(a) & static_cast(b)); return a; }