diff options
Diffstat (limited to 'dev/ZKA/NewKit')
| -rw-r--r-- | dev/ZKA/NewKit/String.hxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/dev/ZKA/NewKit/String.hxx b/dev/ZKA/NewKit/String.hxx index 2f3d2096..5d9ebd21 100644 --- a/dev/ZKA/NewKit/String.hxx +++ b/dev/ZKA/NewKit/String.hxx @@ -79,9 +79,10 @@ namespace Kernel struct StringBuilder final { static ErrorOr<StringView> Construct(const Char* data); - static const char* FromInt(const char* fmt, int n); - static const char* FromBool(const char* fmt, bool n); - static const char* Format(const char* fmt, const char* from); - static bool Equals(const char* lhs, const char* rhs); + static const char* FromInt(const Char* fmt, int n); + static const char* FromBool(const Char* fmt, bool n); + static const char* Format(const Char* fmt, const Char* from); + static bool Equals(const Char* lhs, const Char* rhs); + static bool Equals(const WideChar* lhs, const WideChar* rhs); }; } // namespace Kernel |
