From: Eric Liu Date: Thu, 2 Nov 2017 12:48:48 +0000 (+0000) Subject: Fix clang-format CLion integration bug. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eb2251ff651ab5e512fcf197b45c31496ad674bd;p=clang Fix clang-format CLion integration bug. CLion's Sax parser threw this error: Failed to parse clang-format XML replacements. Input: [...] [org.xml.sax.SAXParseException; lineNumber: 2; columnNumber: 66; Open quote is expected for attribute "line" associated with an element type "replacements".] Patch by Justine Tunney (jart@google.com)! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@317205 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/clang-format/ClangFormat.cpp b/tools/clang-format/ClangFormat.cpp index e169b9e585..b7179ffd64 100644 --- a/tools/clang-format/ClangFormat.cpp +++ b/tools/clang-format/ClangFormat.cpp @@ -289,7 +289,7 @@ static bool format(StringRef FileName) { "xml:space='preserve' incomplete_format='" << (Status.FormatComplete ? "false" : "true") << "'"; if (!Status.FormatComplete) - outs() << " line=" << Status.Line; + outs() << " line='" << Status.Line << "'"; outs() << ">\n"; if (Cursor.getNumOccurrences() != 0) outs() << ""