From: Nico Weber Date: Thu, 2 Mar 2017 14:51:54 +0000 (+0000) Subject: Don't write to LLVMStyle.JavaScriptQuotes twice. No behavior change. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=96b54be08e4b8421cf0c7d434524b59d0bdd3f06;p=clang Don't write to LLVMStyle.JavaScriptQuotes twice. No behavior change. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@296749 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Format/Format.cpp b/lib/Format/Format.cpp index 9910e4316b..8de3355bd5 100644 --- a/lib/Format/Format.cpp +++ b/lib/Format/Format.cpp @@ -554,7 +554,6 @@ FormatStyle getLLVMStyle() { LLVMStyle.SpacesBeforeTrailingComments = 1; LLVMStyle.Standard = FormatStyle::LS_Cpp11; LLVMStyle.UseTab = FormatStyle::UT_Never; - LLVMStyle.JavaScriptQuotes = FormatStyle::JSQS_Leave; LLVMStyle.ReflowComments = true; LLVMStyle.SpacesInParentheses = false; LLVMStyle.SpacesInSquareBrackets = false;