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

References

tools/clang/tools/extra/clang-tidy/modernize/ReplaceAutoPtrCheck.cpp
  175       AutoPtrLoc = Loc.getTemplateNameLoc();
  180     AutoPtrLoc = D->getNameInfo().getBeginLoc();
  185   if (AutoPtrLoc.isMacroID())
  186     AutoPtrLoc = SM.getSpellingLoc(AutoPtrLoc);
  186     AutoPtrLoc = SM.getSpellingLoc(AutoPtrLoc);
  190   if (StringRef(SM.getCharacterData(AutoPtrLoc), strlen("auto_ptr")) !=
  195       AutoPtrLoc.getLocWithOffset(strlen("auto_ptr") - 1);
  196   diag(AutoPtrLoc, "auto_ptr is deprecated, use unique_ptr instead")
  197       << FixItHint::CreateReplacement(SourceRange(AutoPtrLoc, EndLoc),