From 4e9d3c3aee2e243c7314a959aa0f77eaf4662f68 Mon Sep 17 00:00:00 2001 From: Yaron Keren Date: Mon, 7 Jul 2014 09:52:31 +0000 Subject: [PATCH] PointerLoc does not exist anymore. SourceLocation is available from TypeLoc member functions. llvm-svn: 212447 --- clang/include/clang/AST/Decl.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/clang/include/clang/AST/Decl.h b/clang/include/clang/AST/Decl.h index 978c3c8..ce8b8b7 100644 --- a/clang/include/clang/AST/Decl.h +++ b/clang/include/clang/AST/Decl.h @@ -52,8 +52,7 @@ class VarTemplateDecl; /// A client can read the relevant info using TypeLoc wrappers, e.g: /// @code /// TypeLoc TL = TypeSourceInfo->getTypeLoc(); -/// if (PointerLoc *PL = dyn_cast(&TL)) -/// PL->getStarLoc().print(OS, SrcMgr); +/// TL.getStartLoc().print(OS, SrcMgr); /// @endcode /// class TypeSourceInfo { -- 2.7.4