Displaying 3 results from an estimated 3 matches for "r45261".
2014 Jul 18
2
[LLVMdev] [cfe-dev] Use of Smart Pointers in LLVM Projects
...ed in LLD as far back as r153620.
> > std::unique_ptr appeared in LLVM shortly after the C++11 switch with
> > Ahmed's work to migrate the project from OwningPtr to std::unique_ptr
> > (starting with r202609 and ending with r211259). Originally OwningPtr
> > was added in r45261.
> > Something in the order of 60 changes across clang and LLVM mention
> > unique_ptr in their subject and migrate various APIs to use unique_ptr
> > for ownership. Many of which remove uses of explicit delete or helpers
> > like DeleteContainerPointers (and removing explic...
2014 Jul 17
8
[LLVMdev] Use of Smart Pointers in LLVM Projects
...unities).
std::unique_ptr's been used in LLD as far back as r153620.
std::unique_ptr appeared in LLVM shortly after the C++11 switch with
Ahmed's work to migrate the project from OwningPtr to std::unique_ptr
(starting with r202609 and ending with r211259). Originally OwningPtr
was added in r45261.
Something in the order of 60 changes across clang and LLVM mention
unique_ptr in their subject and migrate various APIs to use unique_ptr
for ownership. Many of which remove uses of explicit delete or helpers
like DeleteContainerPointers (and removing explicit dtors in many of
those cases).
Are p...
2014 Jul 18
2
[LLVMdev] [cfe-dev] Use of Smart Pointers in LLVM Projects
...t; >> > std::unique_ptr appeared in LLVM shortly after the C++11 switch with
> >> > Ahmed's work to migrate the project from OwningPtr to std::unique_ptr
> >> > (starting with r202609 and ending with r211259). Originally OwningPtr
> >> > was added in r45261.
> >> > Something in the order of 60 changes across clang and LLVM mention
> >> > unique_ptr in their subject and migrate various APIs to use unique_ptr
> >> > for ownership. Many of which remove uses of explicit delete or helpers
> >> > like DeleteCo...