diff --git a/src/memory/allocator_wrapper.h b/src/memory/allocator_wrapper.h index f499fd0..5e58f31 100755 --- a/src/memory/allocator_wrapper.h +++ b/src/memory/allocator_wrapper.h @@ -59,7 +59,7 @@ public: template allocator_wrapper (const allocator_wrapper&) noexcept {} template allocator_wrapper& operator=(const allocator_wrapper&) noexcept { return *this; } - allocator_wrapper (allocator_wrapper && rhs) noexcept : alloc_ { std::move(rhs.alloc_) } {} + allocator_wrapper (allocator_wrapper && rhs) noexcept : alloc_ ( std::move(rhs.alloc_) ) {} allocator_wrapper& operator=(allocator_wrapper && rhs) noexcept { alloc_ = std::move(rhs.alloc_); return *this; } public: