1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:07:34 +00:00

AK: Use format in String::number.

This commit is contained in:
asynts 2020-09-22 13:27:40 +02:00 committed by Andreas Kling
parent 90536a1558
commit eaeb793454
2 changed files with 18 additions and 47 deletions

View file

@ -238,12 +238,9 @@ public:
}
static String format(const char*, ...);
static String number(unsigned);
static String number(unsigned long);
static String number(unsigned long long);
static String number(int);
static String number(long);
static String number(long long);
template<typename T>
static String number(T);
StringView view() const;