diff --git a/applications/ebos/eclalugridmanager.hh b/applications/ebos/eclalugridmanager.hh index 256bf8dac..b87f82fb0 100644 --- a/applications/ebos/eclalugridmanager.hh +++ b/applications/ebos/eclalugridmanager.hh @@ -173,7 +173,7 @@ protected: // create the EQUIL grid ///// equilGrid_ = new EquilGrid(); - equilGrid_->processEclipseFormat(this->eclState()->getInputGrid(), + equilGrid_->processEclipseFormat(*this->eclState()->getInputGrid(), /*isPeriodic=*/false, /*flipNormals=*/false, /*clipZ=*/false, diff --git a/applications/ebos/eclcpgridmanager.hh b/applications/ebos/eclcpgridmanager.hh index 8795d58d6..4d73e389b 100644 --- a/applications/ebos/eclcpgridmanager.hh +++ b/applications/ebos/eclcpgridmanager.hh @@ -171,7 +171,7 @@ protected: const std::vector &porv = gridProps.getDoubleGridProperty("PORV").getData(); grid_ = new Dune::CpGrid(); - grid_->processEclipseFormat(this->eclState()->getInputGrid(), + grid_->processEclipseFormat(*this->eclState()->getInputGrid(), /*isPeriodic=*/false, /*flipNormals=*/false, /*clipZ=*/false, @@ -182,7 +182,7 @@ protected: // is allergic to distributed grids and the simulation grid is distributed before // the initial condition is calculated. equilGrid_ = new Dune::CpGrid(); - equilGrid_->processEclipseFormat(this->eclState()->getInputGrid(), + equilGrid_->processEclipseFormat(*this->eclState()->getInputGrid(), /*isPeriodic=*/false, /*flipNormals=*/false, /*clipZ=*/false,