-
Notifications
You must be signed in to change notification settings - Fork 15
Closed
Description
Hey, I just realized that the deduction guides described in the proposal D3019R12 are different from the ones in the implementation of indirect.
template <class Value>
indirect(Value) -> indirect<Value>;
template <class Allocator, class Value>
indirect(allocator_arg_t, Allocator, Value) -> indirect<Value,
typename allocator_traits<Allocator>::template rebind_alloc<Value>>;template <typename Value>
indirect(Value) -> indirect<Value>;
template <typename Value>
indirect(std::in_place_t, Value) -> indirect<Value>;
template <typename Alloc, typename Value>
indirect(std::allocator_arg_t, Alloc, std::in_place_t, Value) -> indirect<
Value, typename std::allocator_traits<Alloc>::template rebind_alloc<Value>>;Not sure what the right solution here is, but I at least wanted to report it asap.
Metadata
Metadata
Assignees
Labels
No labels