Skip to content

Commit d7ce7a5

Browse files
committed
Fix MSVC build error
1 parent dec0d29 commit d7ce7a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flang/lib/Parser/openmp-parsers.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1013,7 +1013,7 @@ TYPE_PARSER(sourced(
10131013
// lists absent in the parsed result.
10141014
// E.g. for FLUSH(x) SEQ_CST it would find no clauses following
10151015
// the directive name, parse the argument list "(x)" and stop.
1016-
applyFunction(makeFlushFromOldSyntax1,
1016+
applyFunction<OmpDirectiveSpecification>(makeFlushFromOldSyntax1,
10171017
verbatim("FLUSH"_tok) / !lookAhead("("_tok),
10181018
maybe(Parser<OmpClauseList>{}),
10191019
maybe(parenthesized(nonemptyList(Parser<OmpArgument>{}))),

0 commit comments

Comments
 (0)