mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-08-15 14:43:32 -07:00
Remove CStr::FromInt64$
Some checks failed
checkrefs / lfscheck (push) Has been cancelled
checkrefs / checkrefs (push) Has been cancelled
lint / cppcheck (push) Has been cancelled
lint / copyright (push) Has been cancelled
lint / jenkinsfiles (push) Has been cancelled
pre-commit / build (push) Has been cancelled
Some checks failed
checkrefs / lfscheck (push) Has been cancelled
checkrefs / checkrefs (push) Has been cancelled
lint / cppcheck (push) Has been cancelled
lint / copyright (push) Has been cancelled
lint / jenkinsfiles (push) Has been cancelled
pre-commit / build (push) Has been cancelled
For the usecase it's better to use `fmt::format`.
This commit is contained in:
parent
ae936e8177
commit
d6bdf51d83
3 changed files with 1 additions and 9 deletions
|
|
@ -202,13 +202,6 @@ CStr CStr::Repeat(const CStr& str, size_t reps)
|
||||||
|
|
||||||
// Construction from numbers:
|
// Construction from numbers:
|
||||||
|
|
||||||
CStr CStr::FromInt64(i64 n)
|
|
||||||
{
|
|
||||||
tstringstream<StrBase> ss;
|
|
||||||
ss << n;
|
|
||||||
return ss.str();
|
|
||||||
}
|
|
||||||
|
|
||||||
CStr CStr::FromDouble(double n)
|
CStr CStr::FromDouble(double n)
|
||||||
{
|
{
|
||||||
tstringstream<StrBase> ss;
|
tstringstream<StrBase> ss;
|
||||||
|
|
|
||||||
|
|
@ -95,7 +95,6 @@ public:
|
||||||
|
|
||||||
// Conversions:
|
// Conversions:
|
||||||
|
|
||||||
static CStr FromInt64(i64 n);
|
|
||||||
static CStr FromDouble(double n);
|
static CStr FromDouble(double n);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -386,7 +386,7 @@ private:
|
||||||
r += "user_id=";
|
r += "user_id=";
|
||||||
AppendEscaped(r, m_UserID);
|
AppendEscaped(r, m_UserID);
|
||||||
|
|
||||||
r += "&time=" + CStr::FromInt64(report.m_Time);
|
r = fmt::format("{}&time={}", std::move(r), report.m_Time);
|
||||||
|
|
||||||
r += "&type=";
|
r += "&type=";
|
||||||
AppendEscaped(r, report.m_Type);
|
AppendEscaped(r, report.m_Type);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue