Skip to content

Commit 5814e57

Browse files
fix capture
1 parent 4fdee94 commit 5814e57

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cpp/dolfinx/la/MatrixCSR.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ class MatrixCSR
613613

614614
// True if every entry of the block starting at block index j is
615615
// within tolerance of zero, i.e. the whole block can be dropped.
616-
auto is_zero_block = [&_data, bs2, tol](std::int64_t j)
616+
auto is_zero_block = [this, bs2, tol](std::int64_t j)
617617
{
618618
return std::all_of(std::next(_data.begin(), j * bs2),
619619
std::next(_data.begin(), (j + 1) * bs2),

0 commit comments

Comments
 (0)