mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:57:45 +00:00
AK: Run clang-format on everything.
This commit is contained in:
parent
7ad8790d80
commit
b34b084619
7 changed files with 21 additions and 11 deletions
|
@ -6,7 +6,8 @@
|
|||
|
||||
namespace AK {
|
||||
|
||||
enum ShouldChomp {
|
||||
enum ShouldChomp
|
||||
{
|
||||
NoChomp,
|
||||
Chomp
|
||||
};
|
||||
|
@ -39,7 +40,8 @@ public:
|
|||
}
|
||||
|
||||
private:
|
||||
enum ConstructTheEmptyStringImplTag {
|
||||
enum ConstructTheEmptyStringImplTag
|
||||
{
|
||||
ConstructTheEmptyStringImpl
|
||||
};
|
||||
explicit StringImpl(ConstructTheEmptyStringImplTag)
|
||||
|
@ -47,7 +49,8 @@ private:
|
|||
{
|
||||
}
|
||||
|
||||
enum ConstructWithInlineBufferTag {
|
||||
enum ConstructWithInlineBufferTag
|
||||
{
|
||||
ConstructWithInlineBuffer
|
||||
};
|
||||
StringImpl(ConstructWithInlineBufferTag, ssize_t length);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue