Displaying 3 results from an estimated 3 matches for "r211259".
2014 Jul 18
2
[LLVMdev] [cfe-dev] Use of Smart Pointers in LLVM Projects
...es).
> >
> > 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
> &...
2014 Jul 17
8
[LLVMdev] Use of Smart Pointers in LLVM Projects
...eturn values, etc, allowing many more opportunities).
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 exp...
2014 Jul 18
2
[LLVMdev] [cfe-dev] Use of Smart Pointers in LLVM Projects
...d::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...