[llvm] r206230 - [Allocator] Add Deallocate support to the AllocatorBase CRTP class,
Chandler Carruth
chandlerc at gmail.com
Tue Apr 15 20:09:21 PDT 2014
Yep, and thanks. =] I ended up fixing this in passing in a subsequent
commit, so it should be good now.
On Tue, Apr 15, 2014 at 8:04 PM, Philip Reames <listmail at philipreames.com>wrote:
>
> 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
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20140415/868a90a7/attachment.html>
More information about the llvm-commits
mailing list