diff options
| -rw-r--r-- | clang/include/clang/Rewrite/Rewriter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/Rewrite/Rewriter.h b/clang/include/clang/Rewrite/Rewriter.h index 818a6822009..917b7fcf8a6 100644 --- a/clang/include/clang/Rewrite/Rewriter.h +++ b/clang/include/clang/Rewrite/Rewriter.h @@ -167,7 +167,7 @@ public: /// 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 |

