Skip to content

Commit 39616d1

Browse files
committed
order
1 parent 9d09db3 commit 39616d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rpp/range_allocator.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ struct Range_Allocator {
5555
private:
5656
explicit Block(u64 start, u64 offset, u64 size, Block* next_block,
5757
Block* prev_block) noexcept
58-
: start(start), offset(offset), size(size), next_block(next_block),
58+
: offset(offset), size(size), start(start), next_block(next_block),
5959
prev_block(prev_block){};
6060

6161
u64 size;

0 commit comments

Comments
 (0)