r296749 - Don't write to LLVMStyle.JavaScriptQuotes twice. No behavior change.
Nico Weber via cfe-commits
cfe-commits at lists.llvm.org
Thu Mar 2 06:51:54 PST 2017
Author: nico
Date: Thu Mar 2 08:51:54 2017
New Revision: 296749
URL: http://llvm.org/viewvc/llvm-project?rev=296749&view=rev
Log:
Don't write to LLVMStyle.JavaScriptQuotes twice. No behavior change.
Modified:
cfe/trunk/lib/Format/Format.cpp
Modified: cfe/trunk/lib/Format/Format.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Format/Format.cpp?rev=296749&r1=296748&r2=296749&view=diff
==============================================================================
--- cfe/trunk/lib/Format/Format.cpp (original)
+++ cfe/trunk/lib/Format/Format.cpp Thu Mar 2 08:51:54 2017
@@ -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;
More information about the cfe-commits
mailing list