From 3731ef059d1b3a6607efe695b6f09dc076632914 Mon Sep 17 00:00:00 2001 From: Katharina Heck <katharina.heck@iws.uni-stuttgart.de> Date: Thu, 15 Nov 2018 11:29:34 +0100 Subject: [PATCH] [fix][multidomain] linker error with c++14 --- dumux/multidomain/subdomainstaggeredlocalassembler.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dumux/multidomain/subdomainstaggeredlocalassembler.hh b/dumux/multidomain/subdomainstaggeredlocalassembler.hh index 58a5648872..ace57abc8e 100644 --- a/dumux/multidomain/subdomainstaggeredlocalassembler.hh +++ b/dumux/multidomain/subdomainstaggeredlocalassembler.hh @@ -382,7 +382,7 @@ private: if (problem().isDirichletCell(this->element(), this->fvGeometry(), this->fvGeometry().scv(cellCenterGlobalI), eqIdx + offset)) { 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]; for (auto col = ccRowI.begin(); col != ccRowI.end(); ++col) -- GitLab