We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 145c6e5 commit bcb2da5Copy full SHA for bcb2da5
clang-tools-extra/clang-tidy/modernize/UseDesignatedInitializersCheck.cpp
@@ -20,9 +20,9 @@ using namespace clang::ast_matchers;
20
21
namespace clang::tidy::modernize {
22
23
-static constexpr auto IgnoreSingleElementAggregatesName =
+static const char *IgnoreSingleElementAggregatesName =
24
"IgnoreSingleElementAggregates";
25
-static constexpr auto IgnoreSingleElementAggregatesDefault = true;
+static const bool IgnoreSingleElementAggregatesDefault = true;
26
27
static std::vector<Stmt *>
28
getUndesignatedComponents(const InitListExpr *SyntacticInitList) {
0 commit comments