Skip to content

Commit 611e806

Browse files
committed
keep message texts in a single line
1 parent 4aba4bf commit 611e806

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

flang/lib/Semantics/check-omp-structure.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2652,15 +2652,13 @@ void OmpStructureChecker::Enter(const parser::OmpClause::Destroy &x) {
26522652
if (x.v) {
26532653
if (version < argSince) {
26542654
context_.Say(GetContext().clauseSource,
2655-
"The object parameter in DESTROY clause on DEPOPJ construct "
2656-
"is not allowed in %s, %s"_warn_en_US,
2655+
"The object parameter in DESTROY clause on DEPOPJ construct is not allowed in %s, %s"_warn_en_US,
26572656
ThisVersion(version), TryVersion(argSince));
26582657
}
26592658
} else {
26602659
if (version >= noargDeprecatedIn) {
26612660
context_.Say(GetContext().clauseSource,
2662-
"The DESTROY clause without argument on DEPOBJ construct "
2663-
"is deprecated in %s"_warn_en_US,
2661+
"The DESTROY clause without argument on DEPOBJ construct is deprecated in %s"_warn_en_US,
26642662
ThisVersion(noargDeprecatedIn));
26652663
}
26662664
}

0 commit comments

Comments
 (0)