Displaying 3 results from an estimated 3 matches for "r153620".
2014 Jul 18
2
[LLVMdev] [cfe-dev] Use of Smart Pointers in LLVM Projects
...C++11 days of
> > OwningPtr, and much moreso in the post-C++11 world with
> > std::unique_ptr and std::shared_ptr being usable inside containers, as
> > return 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 t...
2014 Jul 17
8
[LLVMdev] Use of Smart Pointers in LLVM Projects
...towards smart pointer ownership (both in the pre-C++11 days of
OwningPtr, and much moreso in the post-C++11 world with
std::unique_ptr and std::shared_ptr being usable inside containers, as
return 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 menti...
2014 Jul 18
2
[LLVMdev] [cfe-dev] Use of Smart Pointers in LLVM Projects
...nd much moreso in the post-C++11 world with
> >> > std::unique_ptr and std::shared_ptr being usable inside containers, as
> >> > return 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...