Skip to content

Commit

Permalink
vecvec: make const_bucket::iterator = DataVec::const_iterator
Browse files Browse the repository at this point in the history
  • Loading branch information
felixguendling committed Aug 27, 2023
1 parent 706aeac commit 10c3b73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/cista/containers/vecvec.h
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ struct basic_vecvec {

struct const_bucket final {
using value_type = data_value_type;
using iterator = typename DataVec::iterator;
using iterator = typename DataVec::const_iterator;
using const_iterator = typename DataVec::const_iterator;

using iterator_category = std::random_access_iterator_tag;
Expand Down

0 comments on commit 10c3b73

Please sign in to comment.