]> granicus.if.org Git - clang/commitdiff
Fix bug in Replacement's toString on Windows (missing flush).
authorManuel Klimek <klimek@google.com>
Mon, 20 Apr 2015 06:58:56 +0000 (06:58 +0000)
committerManuel Klimek <klimek@google.com>
Mon, 20 Apr 2015 06:58:56 +0000 (06:58 +0000)
Adapt function to LLVM coding style.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@235286 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Tooling/Core/Replacement.cpp

index 525f7dfa91c69ff30ece23b7d7a36439c4522676..b9fc92bb6c71c8248d1bc699f6f19435f98effaf 100644 (file)
@@ -77,11 +77,11 @@ bool Replacement::apply(Rewriter &Rewrite) const {
 }
 
 std::string Replacement::toString() const {
-  std::string result;
-  llvm::raw_string_ostream stream(result);
-  stream << FilePath << ": " << ReplacementRange.getOffset() << ":+"
+  std::string Result;
+  llvm::raw_string_ostream Stream(Result);
+  Stream << FilePath << ": " << ReplacementRange.getOffset() << ":+"
          << ReplacementRange.getLength() << ":\"" << ReplacementText << "\"";
-  return result;
+  return Stream.str();
 }
 
 bool operator<(const Replacement &LHS, const Replacement &RHS) {