Updated comments, fixed shadowed declaration warnings

This commit is contained in:
T.D. (Tongdong) Qiu
2020-06-23 11:30:15 +02:00
parent f974a5f6db
commit 39df7c9381
5 changed files with 17 additions and 17 deletions

View File

@@ -127,10 +127,10 @@ unsigned int MultisegmentWellContribution::getColIdx(unsigned int idx)
}
}
void MultisegmentWellContribution::setReordering(int *toOrder, bool reorder)
void MultisegmentWellContribution::setReordering(int *toOrder_, bool reorder_)
{
this->toOrder = toOrder;
this->reorder = reorder;
this->toOrder = toOrder_;
this->reorder = reorder_;
}
} //namespace Opm