aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2007-12-12 18:46:37 +0000
committerTed Kremenek <kremenek@apple.com>2007-12-12 18:46:37 +0000
commit2a2da1d0522b59c8c56f97a8607106be977a14af (patch)
treeebb343ab859419c33cc4fb5495cdb8dbcc5b557d
parentea8646993741739d8a04d67396fe466dcc3a104f (diff)
Renamed getFullSourceLoc() -> getFullLoc().
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44949 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Lex/Preprocessor.h2
1 files changed, 1 insertions, 1 deletions
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());
}