Just use std::to_string
[novacoin.git] / src / util.h
index e32a468..e778979 100644 (file)
@@ -255,11 +255,6 @@ inline std::string i64tostr(int64_t n)
     return strprintf("%" PRId64, n);
 }
 
-inline std::string itostr(int n)
-{
-    return strprintf("%d", n);
-}
-
 inline int64_t strtoll(const char* psz)
 {
     return strtoll(psz, NULL, 10);