刚刚安装了 VS2017,它声称自 2015 年以来具有卓越的 C++14 支持(这是初级的)。试了一下我的一个使用constexpr
.
这段代码:
struct s
{
size_t i;
constexpr s(nullptr_t) noexcept : i(0) {}
};
static_assert(s(nullptr).i == 0, "!!");
在 VS2015 和 Clang 上编译没有问题,但在 VS2017 中出现新错误:
error C2131: expression did not evaluate to a constant
note: failure was caused by unevaluable pointer value
note: while evaluating 's::s(&s{(null)})'
这段代码看起来不错吧?是不是constexpr
有问题nullptr
?
我很惊讶这个基本的回归可能会出现,我怀疑我的代码一定有问题......