Make the C++ standard explicit in the .clang-format

C++11 was sometimes being detected with the previous "Auto" setting and this screwed up template formatting.
This commit is contained in:
Greg Landrum
2016-02-20 02:37:38 +01:00
parent 80903732d2
commit b6b485c5cb

View File

@@ -43,7 +43,7 @@ PenaltyReturnTypeOnItsOwnLine: 200
PointerAlignment: Left
SpacesBeforeTrailingComments: 2
Cpp11BracedListStyle: true
Standard: Auto
Standard: Cpp03
IndentWidth: 2
TabWidth: 8
UseTab: Never