From 0dc9af5f7e26b0dfa42cb75c900b9ef7a2192425 Mon Sep 17 00:00:00 2001 From: Robin Burchell Date: Tue, 28 May 2019 11:53:16 +0200 Subject: Add clang-format file Also run it across the whole tree to get everything using the One True Style. We don't yet run this in an automated fashion as it's a little slow, but there is a snippet to do so in makeall.sh. --- Kernel/FileSystem/FIFO.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'Kernel/FileSystem/FIFO.h') diff --git a/Kernel/FileSystem/FIFO.h b/Kernel/FileSystem/FIFO.h index b9eea984cb..72faae428d 100644 --- a/Kernel/FileSystem/FIFO.h +++ b/Kernel/FileSystem/FIFO.h @@ -1,15 +1,18 @@ #pragma once #include -#include #include +#include class FileDescriptor; class FIFO final : public File { public: - enum class Direction : byte { - Neither, Reader, Writer + enum class Direction : byte + { + Neither, + Reader, + Writer }; static RetainPtr from_fifo_id(dword); -- cgit v1.2.3