diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-08-13 15:01:54 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-08-13 15:01:54 -0700 |
commit | dae2fa9688ce7b61ee2a46c0b616543ddbecd889 (patch) | |
tree | fc6318149855f3ca579e5d70c257e3b2ca8fff1d | |
parent | 68cf488a6c94c70ec7f5fa71fccef332bf25d7cc (diff) | |
download | mu-dae2fa9688ce7b61ee2a46c0b616543ddbecd889.tar.gz |
1987
-rw-r--r-- | 082persist.cc | 6 |
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> |