Small change: make `.clang-format` use C++11 Standard

I noticed this very small discrepancy, and so I changed it.  The `CMakeLists` is
already using C++11 standard, but the `.clang-format` was not.

Signed-off-by: Jonathan Sifuentes <jayands2k11@ymail.com>
This commit is contained in:
Jonathan Sifuentes 2016-08-08 13:42:19 -07:00
parent a986b42e23
commit 4c4f76bd4a
1 changed files with 1 additions and 1 deletions

View File

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