Skip to content
Snippets Groups Projects
Commit de67a91e authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[grid.walker] allow derived classes to access internals

This is required for some functors in dune-gdt, I think :)
parent 1a1d379b
No related branches found
No related tags found
1 merge request!20Update bindings
......@@ -198,7 +198,10 @@ private:
template <class GV>
class Walker : public ElementAndIntersectionFunctor<GV>
{
protected:
using BaseType = ElementAndIntersectionFunctor<GV>;
private:
using ThisType = Walker;
public:
......@@ -735,7 +738,7 @@ public:
} // .. walk elements
} // ... walk_range(...)
private:
protected:
GridViewType grid_view_;
// We want each thread to have its own copy of each functor. However, as we do not know in advance how many different
// threads we will have (even if DXTC_CONFIG["threading.max_count"] is set, there may be only max_threads at a time,
......
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