summaryrefslogtreecommitdiff
path: root/core/os
diff options
context:
space:
mode:
authorRainer Deyke <rainerd@eldwood.com>2022-04-04 15:07:29 +0200
committerRainer Deyke <rainerd@eldwood.com>2022-04-04 15:07:29 +0200
commit5583bab9d495eaf328605aa40906a503e215760f (patch)
treeb6d8de74d774bdbef062733bd27ae593b929170b /core/os
parent56ae5bbafbbb19dd8cecfec1e5f52b3511ee4fc2 (diff)
Fixed indents
Diffstat (limited to 'core/os')
-rw-r--r--core/os/keyboard.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/os/keyboard.h b/core/os/keyboard.h
index 556ba3638e..86b86fb970 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<Key>(static_cast<int>(a) - static_cast<int>(b));
+ a = static_cast<Key>(static_cast<int>(a) - static_cast<int>(b));
return a;
}
@@ -340,17 +340,17 @@ constexpr Key operator|(Key a, Key b) {
}
constexpr Key &operator|=(Key &a, Key b) {
- a = static_cast<Key>(static_cast<int>(a) | static_cast<int>(b));
+ a = static_cast<Key>(static_cast<int>(a) | static_cast<int>(b));
return a;
}
constexpr Key &operator|=(Key &a, KeyModifierMask b) {
- a = static_cast<Key>(static_cast<int>(a) | static_cast<int>(b));
+ a = static_cast<Key>(static_cast<int>(a) | static_cast<int>(b));
return a;
}
constexpr Key &operator&=(Key &a, KeyModifierMask b) {
- a = static_cast<Key>(static_cast<int>(a) & static_cast<int>(b));
+ a = static_cast<Key>(static_cast<int>(a) & static_cast<int>(b));
return a;
}