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

Chris Lattner sabre at nondot.org
Mon Jan 7 20:13:22 PST 2008


Author: lattner
Date: Mon Jan  7 22:13:21 2008
New Revision: 45735

URL: http://llvm.org/viewvc/llvm-project?rev=45735&view=rev
Log:
readability improvement suggested by Sam Bishop, thanks!

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=45735&r1=45734&r2=45735&view=diff

==============================================================================
--- cfe/trunk/include/clang/Lex/Preprocessor.h (original)
+++ cfe/trunk/include/clang/Lex/Preprocessor.h Mon Jan  7 22:13:21 2008
@@ -153,7 +153,7 @@
   SelectorTable &getSelectorTable() { return Selectors; }
   
   inline FullSourceLoc getFullLoc(SourceLocation Loc) const {
-    return FullSourceLoc(Loc,getSourceManager());
+    return FullSourceLoc(Loc, getSourceManager());
   }
   
   /// SetCommentRetentionState - Control whether or not the preprocessor retains





More information about the cfe-commits mailing list