From 2a2da1d0522b59c8c56f97a8607106be977a14af Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Wed, 12 Dec 2007 18:46:37 +0000 Subject: [PATCH] Renamed getFullSourceLoc() -> getFullLoc(). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44949 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Lex/Preprocessor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/clang/Lex/Preprocessor.h b/include/clang/Lex/Preprocessor.h index 5469c1108e..134a0e95cf 100644 --- a/include/clang/Lex/Preprocessor.h +++ b/include/clang/Lex/Preprocessor.h @@ -152,7 +152,7 @@ public: IdentifierTable &getIdentifierTable() { return Identifiers; } SelectorTable &getSelectorTable() { return Selectors; } - inline FullSourceLoc getFullSourceLoc(SourceLocation Loc) { + inline FullSourceLoc getFullLoc(SourceLocation Loc) { return FullSourceLoc(Loc,getSourceManager()); } -- 2.50.1