Update .clang-format so that recent clang-format such as LLVM-8 works. (#2092)

Use C++03 because this project needs to compile with the standard.
This commit is contained in:
Yutetsu TAKATSUKASA 2020-01-10 00:13:08 +09:00 committed by Veripool API Bot
parent 06247686c5
commit b5c151863a

View File

@ -91,7 +91,8 @@ PenaltyExcessCharacter: 1000000
PenaltyReturnTypeOnItsOwnLine: 60 PenaltyReturnTypeOnItsOwnLine: 60
PointerAlignment: Left PointerAlignment: Left
RawStringFormats: RawStringFormats:
- Delimiter: pb - Delimiters:
- 'pb'
Language: TextProto Language: TextProto
BasedOnStyle: google BasedOnStyle: google
ReflowComments: true ReflowComments: true
@ -108,7 +109,7 @@ SpacesInContainerLiterals: true
SpacesInCStyleCastParentheses: false SpacesInCStyleCastParentheses: false
SpacesInParentheses: false SpacesInParentheses: false
SpacesInSquareBrackets: false SpacesInSquareBrackets: false
Standard: Cpp11 Standard: Cpp03
TabWidth: 8 TabWidth: 8
UseTab: Never UseTab: Never
... ...