From 172178c0c35e1dabb778c80c26dc872136c45cf5 Mon Sep 17 00:00:00 2001 From: Dimitrij Mojoski Date: Thu, 17 Sep 2020 15:22:33 -0600 Subject: [PATCH] Autodetect C++ dialect in use for clang-format PR other//97076 * clang-format: Autodetect C++ standard in use rather than forcing C++03. --- contrib/clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/clang-format b/contrib/clang-format index 7a4e96f64ca..ceb5c1d524f 100644 --- a/contrib/clang-format +++ b/contrib/clang-format @@ -147,4 +147,4 @@ AlignTrailingComments: true AllowShortFunctionsOnASingleLine: All AlwaysBreakTemplateDeclarations: MultiLine KeepEmptyLinesAtTheStartOfBlocks: false -Standard: Cpp03 +Standard: Auto