[llvm] r206230 - [Allocator] Add Deallocate support to the AllocatorBase CRTP class,

Philip Reames listmail at philipreames.com
Tue Apr 15 20:04:43 PDT 2014


On 04/14/2014 05:47 PM, Chandler Carruth wrote:
> +  /// \brief Allocate space for an array of objects without constructing them.
> +  template <typename T> void Deallocate(T *Ptr, size_t /*Num*/) {
> +    Deallocate(static_cast<const void *>(Ptr));
> +  }
Looks like a copy paste error in the comment.

Philip



More information about the llvm-commits mailing list