Skip to content

Commit

Permalink
Merge branch 'felixguendling:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-W4 authored Oct 25, 2024
2 parents 1592fb3 + fabfc0c commit e80c263
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/cista/containers/paged.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ template <typename DataVec, typename SizeType = typename DataVec::size_type,
std::max(std::size_t{2U},
next_power_of_two(sizeof(page<SizeType, PageSizeType>) /
sizeof(typename DataVec::value_type))),
PageSizeType MaxPageSize = 4096>
PageSizeType MaxPageSize = (1 << 15)>
struct paged {
using value_type = typename DataVec::value_type;
using iterator = typename DataVec::iterator;
Expand Down

0 comments on commit e80c263

Please sign in to comment.