Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
drexlerd committed Aug 22, 2024
1 parent b6debc9 commit 593d139
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/flatmemory/details/types/bitset.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1363,7 +1363,7 @@ template<IsUnsignedIntegral Block, typename Tag>
bool ConstView<Bitset<Block, Tag>>::get(std::size_t position) const
{
assert(m_buf);
return BitsetUtils::get<Block>(*this, position);
return BitsetUtils::get(*this, position);
}

template<IsUnsignedIntegral Block, typename Tag>
Expand Down

0 comments on commit 593d139

Please sign in to comment.