Skip to content

Commit e730ef3

Browse files
committed
lambda capture
1 parent c28f94c commit e730ef3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fem/newtonCF.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,8 +365,8 @@ class NewtonCF : public CoefficientFunction {
365365
FlatArray<int> p(numeric_dim, lh);
366366
FlatMatrix<> lhs(numeric_dim, numeric_dim, lh);
367367

368-
const auto distribute_vec_to_blocks = [&](const auto &src,
369-
auto &dest) -> void {
368+
const auto distribute_vec_to_blocks = [](const auto &src,
369+
auto &dest) -> void {
370370

371371
/*
372372
for (size_t qi : Range(mir)) {

0 commit comments

Comments
 (0)