Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-W4 committed Oct 25, 2024
2 parents 2110a12 + e80c263 commit 512c77f
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 512c77f

Please sign in to comment.