remove dependency on serialize.h and util.h for SecureString

This commit is contained in:
Wladimir J. van der Laan
2012-03-24 20:07:01 +01:00
parent f0b5e9e116
commit 6cb6d62347
6 changed files with 125 additions and 117 deletions

View File

@@ -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);