Skip to content

Commit

Permalink
Fix initialization order
Browse files Browse the repository at this point in the history
  • Loading branch information
wdeconinck committed Nov 21, 2024
1 parent 0bf51ec commit d4bb7e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pluto/tests/sandbox/sandbox.cc
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,9 @@ class Array {
}

private:
pluto::allocator<value_type> alloc_;
memory_resource* resource_;
const pluto::Stream& stream_;
pluto::allocator<value_type> alloc_;
value_type* ptr_{nullptr};
std::size_t size_{0};
static constexpr std::size_t alignment_ = pluto::default_alignment();
Expand Down

0 comments on commit d4bb7e0

Please sign in to comment.