aboutsummaryrefslogtreecommitdiff
path: root/src/allocators.h
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2012-06-08 16:26:27 +0200
committerPieter Wuille <pieter.wuille@gmail.com>2012-06-08 16:27:05 +0200
commit0ed0806bb4923a74d5d98f60e080deb6040e5b30 (patch)
tree3c82b275d08844c52e6aa26c27938e686208bd76 /src/allocators.h
parent1b7cd74a495a8fbab9ddcfaea28be25acdfbb200 (diff)
downloadbitcoin-0ed0806bb4923a74d5d98f60e080deb6040e5b30.tar.xz
Update comment about secure_allocator<>
Diffstat (limited to 'src/allocators.h')
-rw-r--r--src/allocators.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/allocators.h b/src/allocators.h
index 4b3356e874..ddeabc48c5 100644
--- a/src/allocators.h
+++ b/src/allocators.h
@@ -117,7 +117,6 @@ struct zero_after_free_allocator : public std::allocator<T>
};
// 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;
#endif