Created on 2013-11-05.00:00:00 last changed 143 months ago
Proposed resolution:
This wording is relative to N3797.
Edit [meta.help] as indicated:
namespace std {
template<class T, T v>
struct integral_constant {
static constexpr T value = v;
typedef T value_type;
typedef integral_constant<T,v> type;
constexpr operator value_type() const noexcept { return value; }
constexpr value_type operator()() const noexcept { return value; }
};
[…]
}
[ Issaquah 2014-02-11: Move to Immediate ]
Obvious.
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2014-02-27 17:03:20 | admin | set | status: wp -> c++14 |
| 2014-02-20 13:52:38 | admin | set | status: immediate -> wp |
| 2014-02-13 04:55:14 | admin | set | messages: + msg6828 |
| 2014-02-13 04:55:14 | admin | set | status: new -> immediate |
| 2014-01-12 13:24:12 | admin | set | messages: + msg6778 |
| 2013-11-05 00:00:00 | admin | create | |