mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:07:45 +00:00
AK: Add a basic formatter for wchar_t
This commit is contained in:
parent
4ef3ed4ba3
commit
67a579aab0
3 changed files with 31 additions and 0 deletions
|
@ -423,6 +423,10 @@ struct Formatter<char> : StandardFormatter {
|
|||
void format(FormatBuilder&, char value);
|
||||
};
|
||||
template<>
|
||||
struct Formatter<wchar_t> : StandardFormatter {
|
||||
void format(FormatBuilder& builder, wchar_t value);
|
||||
};
|
||||
template<>
|
||||
struct Formatter<bool> : StandardFormatter {
|
||||
void format(FormatBuilder&, bool value);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue