mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Shadowed declaration fixed
This commit is contained in:
@@ -271,8 +271,8 @@ public:
|
||||
|
||||
auto getLookUpData(unsigned elemIdx) const
|
||||
{
|
||||
using Grid = std::remove_cv_t< typename std::remove_reference<decltype(gridView_.grid())>::type>;
|
||||
return lookUpData_.template getOriginIndex<Grid>(elemIdx);
|
||||
using GridType = std::remove_cv_t< typename std::remove_reference<decltype(gridView_.grid())>::type>;
|
||||
return lookUpData_.template getOriginIndex<GridType>(elemIdx);
|
||||
}
|
||||
|
||||
bool operator==(const EclGenericProblem& rhs) const;
|
||||
|
||||
Reference in New Issue
Block a user