diff options
-rw-r--r-- | mutator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mutator.cpp b/mutator.cpp index dafb94a..19dd13d 100644 --- a/mutator.cpp +++ b/mutator.cpp @@ -402,7 +402,7 @@ public: int RangeSize [[maybe_unused]] = Rewrite.getRangeSize(SR, opts); #if 1 - Rewrite.InsertText(SBSL, "{\n", "true", "true"); + Rewrite.InsertText(SBSL, "{\n", true, true); Rewrite.InsertTextAfterToken(SL.getLocWithOffset(RangeSize), "\n}"); #endif } @@ -444,7 +444,7 @@ public: int RangeSize [[maybe_unused]] = Rewrite.getRangeSize(SR, opts); #if 1 - Rewrite.InsertText(CSL, "{\n", "true", "true"); + Rewrite.InsertText(CSL, "{\n", true, true); Rewrite.InsertTextAfterToken(SL.getLocWithOffset(RangeSize), "\n}"); #endif } |