Set clang-format standard to Cpp11

* Prevents clang-format to mess up std::string
  literals like "foo"s
* As side-effect is will now use e.g. A<A<int>>
  instead of A<A<int> >
This commit is contained in:
Martchus 2017-05-04 22:43:20 +02:00
parent 04c1f98361
commit 53ff69130c
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ SpacesInContainerLiterals: true
SpacesInCStyleCastParentheses: false
SpacesInParentheses: false
SpacesInSquareBrackets: false
Standard: Cpp03
Standard: Cpp11
TabWidth: 8
UseTab: Never
...