Created on2013-05-15.00:00:00 last changed109 months ago
Notes from the September, 2013 meeting:
This issue is being handled editorially and is being placed in"review" status to ensure that the change has been made.
The example in 7.7 [expr.const] paragraph 6,
struct A { constexpr A(int i) : val(i) { } constexpr operator int() { return val; } constexpr operator long() { return 43; } private: int val; }; template<int> struct X { }; constexpr A a = 42; X<a> x; // OK: unique conversion toint int ary[a]; // error: ambiguous conversionis no longer correct now thatconstexpr does not implyconst for member functions, since the conversion functionscannot be invoked for the constanta.
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2017-02-06 00:00:00 | admin | set | status: drwp -> cd4 |
| 2015-04-13 00:00:00 | admin | set | status: review -> drwp |
| 2013-10-14 00:00:00 | admin | set | messages: +msg4609 |
| 2013-10-14 00:00:00 | admin | set | status: open -> review |
| 2013-05-15 00:00:00 | admin | create | |