mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 13:19:05 +00: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: cc8874b5aa
Pull-request: https://github.com/SerenityOS/serenity/pull/17408
1 changed files with 4 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue