Commit 589a11d5 authored by Dan Melnic's avatar Dan Melnic Committed by Facebook Github Bot

Fix the broken folly/tests/.. build

Summary: Fix the broken folly/tests/.. build

Reviewed By: yfeldblum

Differential Revision: D9477364

fbshipit-source-id: 0b227ebb3eb7e062bff8883ba31b398672273c16
parent 1c0ce290
......@@ -533,11 +533,11 @@ class allocator_delete : private std::remove_reference<Alloc>::type {
allocator_delete& operator=(allocator_delete const&) = default;
allocator_delete& operator=(allocator_delete&&) = default;
explicit allocator_delete(const allocator_type& allocator)
: allocator_type(allocator) {}
explicit allocator_delete(const allocator_type& alloc)
: allocator_type(alloc) {}
explicit allocator_delete(allocator_type&& allocator)
: allocator_type(std::move(allocator)) {}
explicit allocator_delete(allocator_type&& alloc)
: allocator_type(std::move(alloc)) {}
template <typename U>
allocator_delete(const allocator_delete<U>& other)
......
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