We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d09db3 commit 39616d1Copy full SHA for 39616d1
rpp/range_allocator.h
@@ -55,7 +55,7 @@ struct Range_Allocator {
55
private:
56
explicit Block(u64 start, u64 offset, u64 size, Block* next_block,
57
Block* prev_block) noexcept
58
- : start(start), offset(offset), size(size), next_block(next_block),
+ : offset(offset), size(size), start(start), next_block(next_block),
59
prev_block(prev_block){};
60
61
u64 size;
0 commit comments