Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/bmsparsevec.h
Original file line number Diff line number Diff line change
Expand Up @@ -2034,7 +2034,8 @@ void sparse_vector<Val, BV>::set_value_no_null(size_type idx,
unsigned i0, j0;
bm::get_block_coord(nb, i0, j0);

if (const bm::word_t* blk = this->bmatr_.get_block(j, i0, j0))
if (/* const bm::word_t* blk = */
this->bmatr_.get_block(j, i0, j0))
{
// TODO: more efficient set/clear on the block
bvector_type* bv = this->bmatr_.get_row(j);
Expand Down