Skip to content
Snippets Groups Projects
Commit 53785350 authored by Robert K's avatar Robert K
Browse files

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

parent 287f7fe7
No related tags found
1 merge request!762[bugfix][HierarchicSearch] private --> protected.
Pipeline #75249 passed
......@@ -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_;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment