Remove CStr::FromUInt

There is `std::to_string` which does the same. For most uses it's better
to use `fmt::format`.
This commit is contained in:
phosit
2026-08-03 17:44:20 +02:00
parent 06e199b12a
commit ae936e8177
8 changed files with 21 additions and 22 deletions
-7
View File
@@ -202,13 +202,6 @@ CStr CStr::Repeat(const CStr& str, size_t reps)
// Construction from numbers:
CStr CStr::FromUInt(unsigned int n)
{
tstringstream<StrBase> ss;
ss << n;
return ss.str();
}
CStr CStr::FromInt64(i64 n)
{
tstringstream<StrBase> ss;