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 6269877 commit d7384f5Copy full SHA for d7384f5
flang/lib/Support/Fortran-features.cpp
@@ -162,7 +162,7 @@ bool LanguageFeatureControl::ApplyCliOption(std::string input) {
162
negated = true;
163
input = input.substr(3);
164
}
165
- if (auto it {cliOptions_.find(input)}; it != cliOptions_.end()) {
+ if (auto it{cliOptions_.find(input)}; it != cliOptions_.end()) {
166
if (std::holds_alternative<LanguageFeature>(it->second)) {
167
EnableWarning(std::get<LanguageFeature>(it->second), !negated);
168
return true;
0 commit comments