From 40cdc1d85c895f218d398c30e588ffba9d6d112b Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 9 Jan 2026 18:37:30 +0100 Subject: build: mac: fix out of order warning on GCC. Signed-off-by: Amlal El Mahrouss --- include/ocl/tproc/detail/rope_fwd.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3