about summary refs log tree commit diff stats
path: root/082persist.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-08-13 15:01:54 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-08-13 15:01:54 -0700
commitdae2fa9688ce7b61ee2a46c0b616543ddbecd889 (patch)
treefc6318149855f3ca579e5d70c257e3b2ca8fff1d /082persist.cc
parent68cf488a6c94c70ec7f5fa71fccef332bf25d7cc (diff)
downloadmu-dae2fa9688ce7b61ee2a46c0b616543ddbecd889.tar.gz
1987
Diffstat (limited to '082persist.cc')
-rw-r--r--082persist.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/082persist.cc b/082persist.cc
index 3b0bb987..3535e427 100644
--- a/082persist.cc
+++ b/082persist.cc
@@ -97,11 +97,5 @@ bool exists(const string& filename) {
   return 0 == stat(filename.c_str(), &dummy);
 }
 
-string to_string(long long int x) {
-  ostringstream tmp;
-  tmp << x;
-  return tmp.str();
-}
-
 :(before "End Includes")
 #include<sys/stat.h>