From 64c29f079fe040fbd70f6b1f32067069fbf2ded5 Mon Sep 17 00:00:00 2001 From: mutouyun Date: Sat, 14 Dec 2019 15:14:13 +0000 Subject: [PATCH] fine-tune --- src/memory/allocator_wrapper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: