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 919a6d7 commit 8d44d59Copy full SHA for 8d44d59
flang/lib/Parser/unparse.cpp
@@ -2142,7 +2142,7 @@ class UnparseVisitor {
2142
void Unparse(const OmpLinearClause &x) {
2143
using Modifier = OmpLinearClause::Modifier;
2144
auto &modifiers{std::get<std::optional<std::list<Modifier>>>(x.t)};
2145
- if (std::get<bool>(x.t)) { // PostModified
+ if (std::get<bool>(x.t)) { // PostModified
2146
Walk(std::get<OmpObjectList>(x.t));
2147
Walk(": ", modifiers);
2148
} else {
0 commit comments