[cfe-commits] r44949 - /cfe/trunk/include/clang/Lex/Preprocessor.h

Ted Kremenek kremenek at apple.com
Wed Dec 12 10:46:37 PST 2007


Author: kremenek
Date: Wed Dec 12 12:46:37 2007
New Revision: 44949

URL: http://llvm.org/viewvc/llvm-project?rev=44949&view=rev
Log:
Renamed getFullSourceLoc() -> getFullLoc().

Modified:
    cfe/trunk/include/clang/Lex/Preprocessor.h

Modified: cfe/trunk/include/clang/Lex/Preprocessor.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Lex/Preprocessor.h?rev=44949&r1=44948&r2=44949&view=diff

==============================================================================
--- cfe/trunk/include/clang/Lex/Preprocessor.h (original)
+++ cfe/trunk/include/clang/Lex/Preprocessor.h Wed Dec 12 12:46:37 2007
@@ -152,7 +152,7 @@
   IdentifierTable &getIdentifierTable() { return Identifiers; }
   SelectorTable &getSelectorTable() { return Selectors; }
   
-  inline FullSourceLoc getFullSourceLoc(SourceLocation Loc) {
+  inline FullSourceLoc getFullLoc(SourceLocation Loc) {
     return FullSourceLoc(Loc,getSourceManager());
   }
   





More information about the cfe-commits mailing list