-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Closed
Labels
bugSomething isn't workingSomething isn't workingfixedSomething works now, yay!Something works now, yay!
Description
[func.require]p8:
Argument forwarding call wrappers returned by a given standard library function template have the same type if the types of their corresponding state entities are the same.
The state entities of bind_front all have decayed type but the type returned by bind_front depends on the cv-qualification and value category of the arguments:
Lines 1615 to 1618 in 9e76d8c
| template <class _Fx, class... _Types> | |
| _NODISCARD constexpr auto bind_front(_Fx&& _Func, _Types&&... _Args) { | |
| return _Front_binder<_Fx, _Types...>(_STD forward<_Fx>(_Func), _STD forward<_Types>(_Args)...); | |
| } |
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingfixedSomething works now, yay!Something works now, yay!