mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
AK: Add Formatter for FlyString :^)
This commit is contained in:
parent
616af36d91
commit
f41b5a4535
Notes:
sideshowbarker
2024-07-19 02:04:36 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/f41b5a45352
1 changed files with 3 additions and 0 deletions
|
@ -259,6 +259,9 @@ struct Formatter<char[Size]> : Formatter<StringView> {
|
|||
template<>
|
||||
struct Formatter<String> : Formatter<StringView> {
|
||||
};
|
||||
template<>
|
||||
struct Formatter<FlyString> : Formatter<StringView> {
|
||||
};
|
||||
|
||||
template<typename T>
|
||||
struct Formatter<T, typename EnableIf<IsIntegral<T>::value>::Type> : StandardFormatter {
|
||||
|
|
Loading…
Reference in a new issue