🎨 fix indentation

parent ea0a7c7b
...@@ -245,12 +245,13 @@ struct allocator_no_forward : std::allocator<T> ...@@ -245,12 +245,13 @@ struct allocator_no_forward : std::allocator<T>
allocator_no_forward(allocator_no_forward<U>) {} allocator_no_forward(allocator_no_forward<U>) {}
template <class U> template <class U>
struct rebind { struct rebind
{
using other = allocator_no_forward<U>; using other = allocator_no_forward<U>;
}; };
template <class... Args> template <class... Args>
void construct(T* p, const Args&... args) void construct(T* p, const Args& ... args)
{ {
// force copy even if move is available // force copy even if move is available
::new (static_cast<void*>(p)) T(args...); ::new (static_cast<void*>(p)) T(args...);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment