diff options
| author | Ted Kremenek <kremenek@apple.com> | 2007-12-12 18:46:37 +0000 | 
|---|---|---|
| committer | Ted Kremenek <kremenek@apple.com> | 2007-12-12 18:46:37 +0000 | 
| commit | 50d23f007f72343a9c2848be4510efd02093e327 (patch) | |
| tree | f5feff904344fd0546a298e5dfdc5061b8af15ea | |
| parent | d8bcfe27ccb37f361355bf3c56c0cce95a5da56d (diff) | |
| download | bcm5719-llvm-50d23f007f72343a9c2848be4510efd02093e327.tar.gz bcm5719-llvm-50d23f007f72343a9c2848be4510efd02093e327.zip | |
Renamed getFullSourceLoc() -> getFullLoc().
llvm-svn: 44949
| -rw-r--r-- | clang/include/clang/Lex/Preprocessor.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/clang/include/clang/Lex/Preprocessor.h b/clang/include/clang/Lex/Preprocessor.h index 5469c1108e5..134a0e95cf4 100644 --- a/clang/include/clang/Lex/Preprocessor.h +++ b/clang/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());    } | 

