util: Replace i64tostr with ToString

This commit is contained in:
MarcoFalke
2020-03-27 10:06:14 -04:00
parent fac96fff62
commit faaf1cb5b9
6 changed files with 10 additions and 12 deletions

View File

@@ -407,11 +407,6 @@ std::string FormatParagraph(const std::string& in, size_t width, size_t indent)
return out.str();
}
std::string i64tostr(int64_t n)
{
return strprintf("%d", n);
}
int64_t atoi64(const char* psz)
{
#ifdef _MSC_VER