Skip to content
Snippets Groups Projects
Commit 3731ef05 authored by Katharina Heck's avatar Katharina Heck
Browse files

[fix][multidomain] linker error with c++14

parent d98c1c07
No related branches found
No related tags found
1 merge request!1294[fix][multidomain] linker error with c++14
...@@ -382,7 +382,7 @@ private: ...@@ -382,7 +382,7 @@ private:
if (problem().isDirichletCell(this->element(), this->fvGeometry(), this->fvGeometry().scv(cellCenterGlobalI), eqIdx + offset)) if (problem().isDirichletCell(this->element(), this->fvGeometry(), this->fvGeometry().scv(cellCenterGlobalI), eqIdx + offset))
{ {
using namespace Dune::Hybrid; using namespace Dune::Hybrid;
forEach(integralRange(Dune::Hybrid::size(jacRow)), [&](auto&& i) forEach(integralRange(Dune::Hybrid::size(jacRow)), [&, domainId = domainId](auto&& i)
{ {
auto& ccRowI = jacRow[i][cellCenterGlobalI]; auto& ccRowI = jacRow[i][cellCenterGlobalI];
for (auto col = ccRowI.begin(); col != ccRowI.end(); ++col) for (auto col = ccRowI.begin(); col != ccRowI.end(); ++col)
......
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