mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-12 18:33:22 +00:00
Relax constructor for IntrusiveRefCntPtr to not be explicit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149309 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0004d86704
commit
97cf71a517
@ -115,7 +115,7 @@ namespace llvm {
|
||||
|
||||
explicit IntrusiveRefCntPtr() : Obj(0) {}
|
||||
|
||||
explicit IntrusiveRefCntPtr(T* obj) : Obj(obj) {
|
||||
IntrusiveRefCntPtr(T* obj) : Obj(obj) {
|
||||
retain();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user