Skip to content

Commit

Permalink
lambda capture
Browse files Browse the repository at this point in the history
  • Loading branch information
JSchoeberl committed Aug 10, 2022
1 parent c28f94c commit e730ef3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fem/newtonCF.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -365,8 +365,8 @@ class NewtonCF : public CoefficientFunction {
FlatArray<int> p(numeric_dim, lh);
FlatMatrix<> lhs(numeric_dim, numeric_dim, lh);

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

/*
for (size_t qi : Range(mir)) {
Expand Down

0 comments on commit e730ef3

Please sign in to comment.