diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-05-01 18:49:50 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-05-01 18:49:50 +0200 |
| commit | 3ee5f8aac3541604c94594b2f4b9cc7d4453a51b (patch) | |
| tree | b07e02f371b648e6335ee2754e6cc1fc672a5bb2 | |
| parent | Merge pull request #1173 from Diapolo/init_cpp_comment_upd (diff) | |
| download | discoin-3ee5f8aac3541604c94594b2f4b9cc7d4453a51b.tar.xz discoin-3ee5f8aac3541604c94594b2f4b9cc7d4453a51b.zip | |
remove duplicate definition of SecureString in util.h
SecureString was moved to allocators.h in commit 6cb6d623479c5dd42d91de7a4d391078d0800e54
| -rw-r--r-- | src/util.h | 8 |
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); |