mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 09:00:22 +00:00
AK: Fix bogus return type of Result::release_error() (#6054)
The function was not used anywhere so the error was unnoticed.
This commit is contained in:
parent
a8f8e883c1
commit
804ab79995
Notes:
sideshowbarker
2024-07-18 20:55:12 +09:00
Author: https://github.com/vcollette 🔰 Commit: https://github.com/SerenityOS/serenity/commit/804ab79995e Pull-request: https://github.com/SerenityOS/serenity/pull/6054
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ public:
|
||||||
return m_error.has_value();
|
return m_error.has_value();
|
||||||
}
|
}
|
||||||
|
|
||||||
void release_error()
|
ErrorType release_error()
|
||||||
{
|
{
|
||||||
return m_error.release_value();
|
return m_error.release_value();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue