File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -281,14 +281,16 @@ static void DetermineCopyInOutArgument(
281281 if (actual.isAlternateReturn ()) {
282282 return ;
283283 }
284- const auto *dummyObj = std::get_if<characteristics::DummyDataObject>(&dummy.u );
284+ const auto *dummyObj =
285+ std::get_if<characteristics::DummyDataObject>(&dummy.u );
285286 if (!dummyObj) {
286287 // Only DummyDataObject has the information we need
287288 return ;
288289 }
289290 // Check actual contiguity, unless dummy doesn't care
290- bool actualContiguous = dummyObj->ignoreTKR .test (common::IgnoreTKR::Contiguous)
291- || IsSimplyContiguous (actual, sc.foldingContext ());
291+ bool actualContiguous =
292+ dummyObj->ignoreTKR .test (common::IgnoreTKR::Contiguous) ||
293+ IsSimplyContiguous (actual, sc.foldingContext ());
292294 bool actualVectorSubscript = HasVectorSubscript (actual);
293295
294296 // TODO
You can’t perform that action at this time.
0 commit comments