use auto in for-loop as at other occasions.

This commit is contained in:
Markus Blatt 2020-10-01 15:56:50 +02:00
parent f306f78737
commit 684b58564c

View File

@ -146,7 +146,7 @@ namespace bda
event.waitForEvents(events); event.waitForEvents(events);
// actually apply MultisegmentWells // actually apply MultisegmentWells
for(Opm::MultisegmentWellContribution *well: multisegments){ for(auto well: multisegments){
well->setReordering(toOrder.data(), true); well->setReordering(toOrder.data(), true);
well->apply(x_msw.data(), y_msw.data()); well->apply(x_msw.data(), y_msw.data());
} }