Skip to content
Snippets Groups Projects
Commit 9b1c553f authored by Timo Koch's avatar Timo Koch Committed by Jonathan Youett
Browse files

Add template keyword for get calls

parent 5706c70d
No related branches found
No related tags found
No related merge requests found
......@@ -198,7 +198,7 @@ namespace Impl {
namespace H = Dune::Hybrid;
H::forEach(H::integralRange(std::integral_constant<size_t, size_>()), [&](auto i) {
if(i==index_)
unions_.set(other.get<i>());
unions_.set(other.template get<i>());
});
}
......@@ -211,7 +211,7 @@ namespace Impl {
namespace H = Dune::Hybrid;
H::forEach(H::integralRange(std::integral_constant<size_t, size_>()), [&](auto i) {
if(i==index_)
unions_.set(other.get<i>());
unions_.set(other.template get<i>());
});
return *this;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment