constexpr errors; VS2017 C++ compiler regression?

别来无恙 提交于 2019-12-04 11:45:17

问题


Just installed VS2017, which claims to have superior C++14 support since 2015 (which was rudimentary). Gave it a spin on one of my projects which uses constexpr, and noticed what appear to be some regressions.

This code:

struct s
{
    size_t i;
    constexpr s(nullptr_t) noexcept : i(0) {}
};
static_assert(s(nullptr).i == 0, "!!");

Compiles no problem on VS2015 and Clang, but I get a new error in 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)})'

This code looks fine right? Is constexpr meant to have a problem with nullptr?
I'm astonished a regression this basic could appear, I suspect there must be something wrong with my code...


回答1:


constexpr constructor(std::nullptr_t) causes "error C2131: expression did not evaluate to a constant"

This issue was reported as a bug in Visual Studio 2017 version 15.1.
There was a variation of another issue reported earlier by the OP (?).

This was fixed in: Visual Studio 2017 version 15.6 Preview 1



来源:https://stackoverflow.com/questions/42917099/constexpr-errors-vs2017-c-compiler-regression

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!