From: Yaron Keren Date: Mon, 7 Jul 2014 09:52:31 +0000 (+0000) Subject: PointerLoc does not exist anymore. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4e9d3c3aee2e243c7314a959aa0f77eaf4662f68;p=platform%2Fupstream%2Fllvm.git PointerLoc does not exist anymore. SourceLocation is available from TypeLoc member functions. llvm-svn: 212447 --- 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 {