remove duplicate definition of SecureString in util.h
authorWladimir J. van der Laan <laanwj@gmail.com>
Tue, 1 May 2012 16:49:50 +0000 (18:49 +0200)
committerWladimir J. van der Laan <laanwj@gmail.com>
Tue, 1 May 2012 16:49:50 +0000 (18:49 +0200)
SecureString was moved to allocators.h in commit 6cb6d623479c5dd42d91de7a4d391078d0800e54

src/util.h

index 6c3e6c5..5f8d037 100644 (file)
@@ -302,14 +302,6 @@ typedef boost::interprocess::interprocess_condition CConditionVariable;
     }
 
 
-// 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);