From: Tudor Bosman Date: Fri, 15 Feb 2013 00:48:32 +0000 (-0800) Subject: fix comment X-Git-Tag: v0.22.0~1059 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=cf583f13de678c1557ccf7edade5b3340c0e3908;p=folly.git fix comment Test Plan: No Reviewed By: philipp@fb.com FB internal diff: D709795 --- diff --git a/folly/StlAllocator.h b/folly/StlAllocator.h index 1dd59248..4cbe8f8b 100644 --- a/folly/StlAllocator.h +++ b/folly/StlAllocator.h @@ -34,7 +34,7 @@ namespace folly { * * The SimpleAllocator must provide two methods: * void* allocate(size_t size); - * void deallocate(void* ptr, size_t size); + * void deallocate(void* ptr); * which, respectively, allocate a block of size bytes (aligned to the maximum * alignment required on your system), throwing std::bad_alloc if the * allocation can't be satisfied, and free a previously allocated block.