summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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)