mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-28 05:35:52 +03:00
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:
parent
048fb2c204
commit
cc8874b5aa
Notes:
sideshowbarker
2024-07-17 08:27:05 +09:00
Author: https://github.com/timschumi Commit: https://github.com/SerenityOS/serenity/commit/cc8874b5aa Pull-request: https://github.com/SerenityOS/serenity/pull/17408
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user