aboutsummaryrefslogtreecommitdiff
path: root/src/allocators.h
diff options
context:
space:
mode:
authorPieter Wuille <[email protected]>2012-06-08 16:26:27 +0200
committerPieter Wuille <[email protected]>2012-06-08 16:27:05 +0200
commit0ed0806bb4923a74d5d98f60e080deb6040e5b30 (patch)
tree3c82b275d08844c52e6aa26c27938e686208bd76 /src/allocators.h
parentMerge pull request #1424 from TheBlueMatt/lockcontention (diff)
downloaddiscoin-0ed0806bb4923a74d5d98f60e080deb6040e5b30.tar.xz
discoin-0ed0806bb4923a74d5d98f60e080deb6040e5b30.zip
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 4b3356e87..ddeabc48c 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