util: Remove unused itostr

This commit is contained in:
MarcoFalke
2020-03-27 09:05:31 -04:00
parent e3154aacf4
commit fac96fff62
5 changed files with 4 additions and 14 deletions

View File

@@ -412,11 +412,6 @@ std::string i64tostr(int64_t n)
return strprintf("%d", n);
}
std::string itostr(int n)
{
return strprintf("%d", n);
}
int64_t atoi64(const char* psz)
{
#ifdef _MSC_VER