summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-01-09 18:37:30 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-01-09 18:37:30 +0100
commit40cdc1d85c895f218d398c30e588ffba9d6d112b (patch)
tree2bca9d41b9b69429c78bd148269a68ce52ff5865
parent2d2a850a61dbe5695ba92dfc4dcb107c10d3bce6 (diff)
build: mac: fix out of order warning on GCC.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
-rw-r--r--include/ocl/tproc/detail/rope_fwd.inl2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ocl/tproc/detail/rope_fwd.inl b/include/ocl/tproc/detail/rope_fwd.inl
index 4fd6e9a..dfe4b1f 100644
--- a/include/ocl/tproc/detail/rope_fwd.inl
+++ b/include/ocl/tproc/detail/rope_fwd.inl
@@ -28,8 +28,8 @@ namespace ocl::tproc
size_type weight_{0}; // Size of left subtree (internal) OR data size (leaf)
value_type* blob_{nullptr}; // Character data (leaf node only)
- size_type capacity_{0}; // Allocated blob capacity
allocator_type alloc_;
+ size_type capacity_{0}; // Allocated blob capacity
public:
tree_impl(Allocator alloc = Allocator()) : alloc_(alloc)