From d5999c3811b108f22cda03c7dc84e1620320e63e Mon Sep 17 00:00:00 2001 From: asynts Date: Fri, 21 Aug 2020 18:51:25 +0200 Subject: [PATCH] AK: Move include to the top. clang-format automatically sorts include statements that are in a 'block'. Adding a whitespace prevents this. It is crutial that is included first because it redefines some macros. --- AK/Tests/TestCircularQueue.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/AK/Tests/TestCircularQueue.cpp b/AK/Tests/TestCircularQueue.cpp index 00d5e3be963..65425aa1fb0 100644 --- a/AK/Tests/TestCircularQueue.cpp +++ b/AK/Tests/TestCircularQueue.cpp @@ -25,8 +25,9 @@ */ #include -#include + #include +#include TEST_CASE(basic) {