diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-03-24 20:07:01 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-04-04 09:35:01 +0200 |
commit | 6cb6d623479c5dd42d91de7a4d391078d0800e54 (patch) | |
tree | 22cd56f5bbda2cad0ea2ef654ef6548bee99a5eb /src/util.h | |
parent | f0b5e9e116a1eb8b19b3676e7f8b125e912a78f3 (diff) |
remove dependency on serialize.h and util.h for SecureString
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/util.h b/src/util.h index 0af5b0a2c5..0b73549dc7 100644 --- a/src/util.h +++ b/src/util.h @@ -267,16 +267,6 @@ public: - - -// 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); |