diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 17:13:23 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 17:13:23 +0200 |
commit | 39d1a9ae668fea86724a23f29497892664f703ed (patch) | |
tree | a14df3d0f04b442ff90465e34462c66fbb209925 /Kernel/TTY/VirtualConsole.h | |
parent | 9145917bf017cabcb797cf97bf21c139f6507c53 (diff) | |
download | serenity-39d1a9ae668fea86724a23f29497892664f703ed.zip |
Meta: Tweak .clang-format to not wrap braces after enums.
Diffstat (limited to 'Kernel/TTY/VirtualConsole.h')
-rw-r--r-- | Kernel/TTY/VirtualConsole.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Kernel/TTY/VirtualConsole.h b/Kernel/TTY/VirtualConsole.h index 8e89fac853..7d9bb850da 100644 --- a/Kernel/TTY/VirtualConsole.h +++ b/Kernel/TTY/VirtualConsole.h @@ -9,8 +9,7 @@ class VirtualConsole final : public TTY , public ConsoleImplementation { AK_MAKE_ETERNAL public: - enum InitialContents - { + enum InitialContents { Cleared, AdoptCurrentVGABuffer }; @@ -73,8 +72,7 @@ private: void execute_escape_sequence(byte final); - enum EscapeState - { + enum EscapeState { Normal, ExpectBracket, ExpectParameter, |