Skip to content

Commit

Permalink
update value type
Browse files Browse the repository at this point in the history
  • Loading branch information
drexlerd committed Feb 14, 2024
1 parent d491e51 commit 5bc01ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/flatmemory/details/types/bitset.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -316,9 +316,9 @@ namespace flatmemory

public:
using difference_type = size_t;
using value_type = bool;
using pointer = bool*;
using reference = bool&;
using value_type = size_t;
using pointer = size_t*;
using reference = size_t&;
using iterator_category = std::forward_iterator_tag;

const_iterator(bool default_bit_value, const Block* blocks, size_t num_blocks, bool begin)
Expand Down

0 comments on commit 5bc01ac

Please sign in to comment.