Return true if A points to the same object as raw pointer B.

Synopsis

Declared in <llvm/ADT/IntrusiveRefCntPtr.h>

template<
    class T,
    class U>
bool
operator==(
    IntrusiveRefCntPtr<T> const& A,
    U* B);

Return Value

True if A points to the same object as B.

Parameters

Name

Description

A

Smart pointer.

B

Raw pointer to compare against.

Created with MrDocs