Index: include/llvm/ADT/IntrusiveRefCntPtr.h =================================================================== --- include/llvm/ADT/IntrusiveRefCntPtr.h +++ include/llvm/ADT/IntrusiveRefCntPtr.h @@ -68,9 +68,6 @@ /// calls to Release() and Retain(), which increment and decrement the object's /// refcount, respectively. When a Release() call decrements the refcount to 0, /// the object deletes itself. -/// -/// Objects that inherit from RefCountedBase should always be allocated with -/// operator new. template class RefCountedBase { mutable unsigned RefCount = 0;