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 /AK/StringImpl.h | |
parent | 9145917bf017cabcb797cf97bf21c139f6507c53 (diff) | |
download | serenity-39d1a9ae668fea86724a23f29497892664f703ed.zip |
Meta: Tweak .clang-format to not wrap braces after enums.
Diffstat (limited to 'AK/StringImpl.h')
-rw-r--r-- | AK/StringImpl.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/AK/StringImpl.h b/AK/StringImpl.h index 56bf4832c5..babca34e10 100644 --- a/AK/StringImpl.h +++ b/AK/StringImpl.h @@ -6,8 +6,7 @@ namespace AK { -enum ShouldChomp -{ +enum ShouldChomp { NoChomp, Chomp }; @@ -40,8 +39,7 @@ public: } private: - enum ConstructTheEmptyStringImplTag - { + enum ConstructTheEmptyStringImplTag { ConstructTheEmptyStringImpl }; explicit StringImpl(ConstructTheEmptyStringImplTag) @@ -49,8 +47,7 @@ private: { } - enum ConstructWithInlineBufferTag - { + enum ConstructWithInlineBufferTag { ConstructWithInlineBuffer }; StringImpl(ConstructWithInlineBufferTag, ssize_t length); |