reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Sema/SemaExceptionSpec.cpp
   28   if (const PointerType *PtrTy = T->getAs<PointerType>())
   29     T = PtrTy->getPointeeType();
   30   else if (const ReferenceType *RefTy = T->getAs<ReferenceType>())
   31     T = RefTy->getPointeeType();
   32   else if (const MemberPointerType *MPTy = T->getAs<MemberPointerType>())
   33     T = MPTy->getPointeeType();
   34   return T->getAs<FunctionProtoType>();