diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 11:46:22 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 11:46:22 +0200 |
commit | b34b084619879111b9811d9334462d85272f3586 (patch) | |
tree | 8fe4bf707c7f712a22c1df1e648cb24ff522adb2 /AK/ByteBuffer.h | |
parent | 7ad8790d803002a193258d65a25452864dc214a3 (diff) | |
download | serenity-b34b084619879111b9811d9334462d85272f3586.zip |
AK: Run clang-format on everything.
Diffstat (limited to 'AK/ByteBuffer.h')
-rw-r--r-- | AK/ByteBuffer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/AK/ByteBuffer.h b/AK/ByteBuffer.h index c472e94022..d74798983c 100644 --- a/AK/ByteBuffer.h +++ b/AK/ByteBuffer.h @@ -60,7 +60,8 @@ public: void grow(int size); private: - enum ConstructionMode { + enum ConstructionMode + { Uninitialized, Copy, Wrap, |