From cc8874b5aa16de7f413fda53bd039579c077bc2d Mon Sep 17 00:00:00 2001 From: Tim Schumacher Date: Fri, 10 Feb 2023 11:58:54 +0100 Subject: [PATCH] AK: Fix a linting issue in `Error.h` I'm not sure why, but `clang-format` gets unhappy if we touch the adjacent line. --- AK/Error.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/AK/Error.h b/AK/Error.h index 3fcbab99b9a..bb7315d8c89 100644 --- a/AK/Error.h +++ b/AK/Error.h @@ -79,7 +79,10 @@ public: { return m_code != 0; } - bool is_syscall() const { return m_syscall; } + bool is_syscall() const + { + return m_syscall; + } StringView string_literal() const { return m_string_literal;