From a0874a0d6de732f75241ffe515623fd0d410c51b Mon Sep 17 00:00:00 2001 From: Ashley Sommer Date: Wed, 5 Jul 2023 20:23:38 +1000 Subject: [PATCH] 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. --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index 3c68a1a7a..f4cd68ae4 100644 --- a/.clang-format +++ b/.clang-format @@ -81,7 +81,7 @@ SpacesInContainerLiterals: true SpacesInCStyleCastParentheses: false SpacesInParentheses: false SpacesInSquareBrackets: false -Standard: Cpp11 +Standard: c++17 TabWidth: 4 UseTab: Never ...