mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-02 05:49:09 -06:00
Shadow declaration Grid(Type) fixed
This commit is contained in:
parent
0a8e1fa757
commit
1f77b0c199
@ -1995,8 +1995,8 @@ protected:
|
||||
{
|
||||
const auto& lookup = this->lookUpData_;
|
||||
// Get Grid Type
|
||||
using Grid = std::remove_cv_t< typename std::remove_reference<decltype(this->gridView().grid())>::type>;
|
||||
return [&lookup](unsigned elemIdx) { return lookup.template getFieldPropIdx<Grid>(elemIdx);};
|
||||
using GridType = std::remove_cv_t< typename std::remove_reference<decltype(this->gridView().grid())>::type>;
|
||||
return [&lookup](unsigned elemIdx) { return lookup.template getFieldPropIdx<GridType>(elemIdx);};
|
||||
}
|
||||
|
||||
void readMaterialParameters_()
|
||||
|
Loading…
Reference in New Issue
Block a user