mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 22:38:13 +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
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