blob: 7a1c5154865b8fc206ae718fba950b82881370aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
Author: Argyrios Kyrtzidis <akyrtzi@gmail.com>
Date: Tue Sep 23 06:06:43 2014 +0000
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218295 91177308-0d34-0410-b5e6-96231b3b80d8
---
interpreter/llvm/src/include/llvm/ADT/IntrusiveRefCntPtr.h | 3 +++
1 file changed, 3 insertions(+)
diff --git a/interpreter/llvm/src/include/llvm/ADT/IntrusiveRefCntPtr.h b/interpreter/llvm/src/include/llvm/ADT/IntrusiveRefCntPtr.h
index f9df378..c859c98 100644
--- a/interpreter/llvm/src/include/llvm/ADT/IntrusiveRefCntPtr.h
+++ b/interpreter/llvm/src/include/llvm/ADT/IntrusiveRefCntPtr.h
@@ -197,6 +197,9 @@ public:
private:
void retain() { if (Obj) IntrusiveRefCntPtrInfo<T>::retain(Obj); }
void release() { if (Obj) IntrusiveRefCntPtrInfo<T>::release(Obj); }
+
+ template <typename X>
+ friend class IntrusiveRefCntPtr;
};
template<class T, class U>
--
1.7.10.4
|