AK: Add Formatter for FlyString :^)

This commit is contained in:
Andreas Kling 2020-10-04 13:50:58 +02:00
parent 616af36d91
commit f41b5a4535

View file

@ -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 {