Skip to content
Snippets Groups Projects

[bugfix][HierarchicSearch] private --> protected.

Merged Robert K requested to merge feature/hierarchicsearch into master
1 file
+ 2
1
Compare changes
  • Side-by-side
  • Inline
@@ -33,6 +33,7 @@ namespace Dune
template<class Grid, class IS>
class HierarchicSearch
{
protected:
//! get dimension from the grid
constexpr static int dim = Grid::dimension;
@@ -171,7 +172,7 @@ namespace Dune
DUNE_THROW( GridError, "Coordinate " << global << " is outside the grid." );
}
private:
protected:
const Grid& grid_;
const IS& indexSet_;
};
Loading