changeset 2345:5ab99cb74451 draft

Merge pull request #1177 from laanwj/2012_05_remove_duplicate_securestring remove duplicate definition of SecureString in util.h
author Jeff Garzik <jgarzik@exmulti.com>
date Tue, 01 May 2012 10:05:00 -0700
parents 27327cc56738 (current diff) 397e0e3b7738 (diff)
children 64bd9d51099a b3485cc1bce6
files
diffstat 1 files changed, 0 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/src/util.h
+++ b/src/util.h
@@ -302,14 +302,6 @@
     }
 
 
-// This is exactly like std::string, but with a custom allocator.
-// (secure_allocator<> is defined in serialize.h)
-typedef std::basic_string<char, std::char_traits<char>, secure_allocator<char> > SecureString;
-
-
-
-
-
 inline std::string i64tostr(int64 n)
 {
     return strprintf("%"PRI64d, n);