mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
AK: Add missing return in Formatter<unsigned char[Size]>::format()
Caught by ENABLE_ALL_THE_DEBUG_MACROS.
This commit is contained in:
parent
216e21a1fa
commit
8fe1c1f788
Notes:
sideshowbarker
2024-07-18 01:03:40 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/8fe1c1f7887
1 changed files with 1 additions and 1 deletions
|
@ -405,7 +405,7 @@ struct Formatter<unsigned char[Size]> : Formatter<StringView> {
|
|||
Formatter<FlatPtr> formatter { *this };
|
||||
return formatter.format(builder, reinterpret_cast<FlatPtr>(value));
|
||||
}
|
||||
Formatter<StringView>::format(builder, { value, Size });
|
||||
return Formatter<StringView>::format(builder, { value, Size });
|
||||
}
|
||||
};
|
||||
template<>
|
||||
|
|
Loading…
Reference in a new issue