Update comment about secure_allocator<>
authorPieter Wuille <pieter.wuille@gmail.com>
Fri, 8 Jun 2012 14:26:27 +0000 (16:26 +0200)
committerLuke Dashjr <luke-jr+git@utopios.org>
Thu, 14 Jun 2012 17:03:27 +0000 (17:03 +0000)
src/allocators.h

index 4b3356e..ddeabc4 100644 (file)
@@ -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