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 16662ce commit 85d81c5Copy full SHA for 85d81c5
flang/lib/Parser/openmp-parsers.cpp
@@ -1488,7 +1488,7 @@ struct OmpBlockConstructParser {
1488
auto end{maybe(OmpEndDirectiveParser{dir_}).Parse(state)};
1489
// Dereference outer optional (maybe() always succeeds) and look at the
1490
// inner optional.
1491
- bool endPresent = end->has_value();
+ bool endPresent{end->has_value()};
1492
1493
// ORDERED is special. We do need to return failure here so that the
1494
// standalone ORDERED construct can be distinguished from the block
0 commit comments