ClangFormat: Remove set standard to cpp11

Standard sets to Auto a few lines further.

Change-Id: Id0bb61cb38fbabd682123baa3860ebdaf5b10846
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
Artem Sokolovskii
2023-10-26 11:48:09 +02:00
parent 5bdd3f8e1d
commit 25fa42c3a2

View File

@@ -179,7 +179,6 @@ clang::format::FormatStyle calculateQtcStyle()
#endif #endif
style.SpacesInSquareBrackets = false; style.SpacesInSquareBrackets = false;
addQtcStatementMacros(style); addQtcStatementMacros(style);
style.Standard = FormatStyle::LS_Cpp11;
style.TabWidth = 4; style.TabWidth = 4;
style.UseTab = FormatStyle::UT_Never; style.UseTab = FormatStyle::UT_Never;
style.Standard = FormatStyle::LS_Auto; style.Standard = FormatStyle::LS_Auto;