Created on 2017-02-03.00:00:00 last changed 93 months ago
Proposed resolution:
This wording is relative to N4618.
Add to the synopsis of <array>:
template <class TYPES> array(TYPES&&...) -> array<common_type_t<TYPES...>, sizeof...(TYPES)>;
[ 2017-03-12, post-Kona ]
Resolved by P0433R2.
std::array does not support class-template deduction from initializers without a deduction guide.
Proposed change:
Add to <array> synopsis:
template <class TYPES> array(TYPES&&...) -> array<common_type_t<TYPES...>, sizeof...(TYPES)>;
History | |||
---|---|---|---|
Date | User | Action | Args |
2017-03-12 23:04:12 | admin | set | messages: + msg9087 |
2017-03-12 23:04:12 | admin | set | status: new -> resolved |
2017-02-04 04:54:35 | admin | set | messages: + msg8908 |
2017-02-03 00:00:00 | admin | create |