aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeff Garzik <[email protected]>2012-05-01 10:05:00 -0700
committerJeff Garzik <[email protected]>2012-05-01 10:05:00 -0700
commite19ccfa657094590d52741066ea161855975ace3 (patch)
tree5bdb0cd001ccf0420abcd51ebed17c5359b2e5de /src
parentMerge pull request #1172 from Diapolo/serialize_h_rem_typedef (diff)
parentremove duplicate definition of SecureString in util.h (diff)
downloaddiscoin-e19ccfa657094590d52741066ea161855975ace3.tar.xz
discoin-e19ccfa657094590d52741066ea161855975ace3.zip
Merge pull request #1177 from laanwj/2012_05_remove_duplicate_securestring
remove duplicate definition of SecureString in util.h
Diffstat (limited to 'src')
-rw-r--r--src/util.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/util.h b/src/util.h
index 6c3e6c545..5f8d0375d 100644
--- a/src/util.h
+++ b/src/util.h
@@ -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);