forked from OSchip/llvm-project
Remove IntrusiveRefCntPtr::getPtr() function
It was deprecated in r212366 and all uses have been switched to get(). llvm-svn: 212382
This commit is contained in:
parent
37da619d34
commit
d7a0d64c14
|
@ -177,9 +177,6 @@ public:
|
|||
|
||||
T* get() const { return Obj; }
|
||||
|
||||
/// Deprecated: use get().
|
||||
T* getPtr() const { return Obj; }
|
||||
|
||||
LLVM_EXPLICIT operator bool() const { return Obj; }
|
||||
|
||||
void swap(IntrusiveRefCntPtr& other) {
|
||||
|
|
Loading…
Reference in New Issue