Update .clang-format wtih C++17 standard (#9612)

The standard name "Cpp11" is no longer a valid option in clang-format, it is now supposed to be "c++11", but we are on c++17 now, so change to that.
This commit is contained in:
Ashley Sommer
2023-07-05 20:23:38 +10:00
committed by GitHub
parent e755ee8e04
commit a0874a0d6d

View File

@@ -81,7 +81,7 @@ SpacesInContainerLiterals: true
SpacesInCStyleCastParentheses: false
SpacesInParentheses: false
SpacesInSquareBrackets: false
Standard: Cpp11
Standard: c++17
TabWidth: 4
UseTab: Never
...