mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:17:44 +00:00
AK: Add Formatter for FlyString :^)
This commit is contained in:
parent
616af36d91
commit
f41b5a4535
1 changed files with 3 additions and 0 deletions
|
@ -259,6 +259,9 @@ struct Formatter<char[Size]> : Formatter<StringView> {
|
||||||
template<>
|
template<>
|
||||||
struct Formatter<String> : Formatter<StringView> {
|
struct Formatter<String> : Formatter<StringView> {
|
||||||
};
|
};
|
||||||
|
template<>
|
||||||
|
struct Formatter<FlyString> : Formatter<StringView> {
|
||||||
|
};
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
struct Formatter<T, typename EnableIf<IsIntegral<T>::value>::Type> : StandardFormatter {
|
struct Formatter<T, typename EnableIf<IsIntegral<T>::value>::Type> : StandardFormatter {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue