From cf583f13de678c1557ccf7edade5b3340c0e3908 Mon Sep 17 00:00:00 2001 From: Tudor Bosman Date: Thu, 14 Feb 2013 16:48:32 -0800 Subject: [PATCH] fix comment Test Plan: No Reviewed By: philipp@fb.com FB internal diff: D709795 --- folly/StlAllocator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.34.1