AK: Fix a linting issue in Error.h

I'm not sure why, but `clang-format` gets unhappy if we touch the
adjacent line.
This commit is contained in:
Tim Schumacher 2023-02-10 11:58:54 +01:00 committed by Andreas Kling
parent 048fb2c204
commit cc8874b5aa

View file

@ -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;