summaryrefslogtreecommitdiff
path: root/lang/clang35/files/patch-svn-218295
diff options
context:
space:
mode:
Diffstat (limited to 'lang/clang35/files/patch-svn-218295')
-rw-r--r--lang/clang35/files/patch-svn-21829520
1 files changed, 0 insertions, 20 deletions
diff --git a/lang/clang35/files/patch-svn-218295 b/lang/clang35/files/patch-svn-218295
deleted file mode 100644
index 2e4cfbac8dfa..000000000000
--- a/lang/clang35/files/patch-svn-218295
+++ /dev/null
@@ -1,20 +0,0 @@
-------------------------------------------------------------------------
-r218295 | akirtzidis | 2014-09-23 08:06:43 +0200 (Tue, 23 Sep 2014) | 2 lines
-
-[ADT/IntrusiveRefCntPtr] Give friend access to IntrusiveRefCntPtr<X> so the relevant move constructor can access 'Obj'.
-
-------------------------------------------------------------------------
-Index: include/llvm/ADT/IntrusiveRefCntPtr.h
-===================================================================
---- include/llvm/ADT/IntrusiveRefCntPtr.h (revision 218294)
-+++ include/llvm/ADT/IntrusiveRefCntPtr.h (revision 218295)
-@@ -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>