[cfe-commits] r79609 - /cfe/trunk/include/clang/Rewrite/Rewriter.h

Daniel Dunbar daniel at zuster.org
Fri Aug 21 01:22:12 PDT 2009


Author: ddunbar
Date: Fri Aug 21 03:22:12 2009
New Revision: 79609

URL: http://llvm.org/viewvc/llvm-project?rev=79609&view=rev
Log:
Fix refacto.

Modified:
    cfe/trunk/include/clang/Rewrite/Rewriter.h

Modified: cfe/trunk/include/clang/Rewrite/Rewriter.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Rewrite/Rewriter.h?rev=79609&r1=79608&r2=79609&view=diff

==============================================================================
--- cfe/trunk/include/clang/Rewrite/Rewriter.h (original)
+++ cfe/trunk/include/clang/Rewrite/Rewriter.h Fri Aug 21 03:22:12 2009
@@ -167,7 +167,7 @@
   ///  inserted after any other text that has been previously inserted
   ///  at the some point (the default behavior for InsertText).
   bool InsertTextAfter(SourceLocation Loc, const llvm::StringRef &Str) {
-    return InsertText(Loc, Str, false);
+    return InsertText(Loc, Str);
   }    
   
   /// InsertText - Insert the specified string at the specified location in the





More information about the cfe-commits mailing list