constexpr
functions are not supposed to contain:
A definition of a variable of non-literal type
But in this answer a lambda is defined in one: https://stackoverflow.com/a/41616651/2642059
template <typename T>
constexpr auto make_div(const T quot, const T rem)
{
return [&]() {
decltype(std::div(quot, rem)) result;
result.quot = quot;
result.rem = rem;
return result;
}();
}
and in my comment I define a div_t
in one: How can I Initialize a div_t Object?
template <typename T>
constexpr decltype(div(T{}, T{})) make_div(const T quot, const T rem)
{
decltype(div(T{}, T{})) x{};
x.quot = quot;
x.rem = rem;
return x;
}
Exactly what is meant by the prohibition of the "definition of a variable of non-literal type"?
Visual Studio 2015 won't allow my definition of a div_t
but I find it nonsensical that it would be allowable to just wrap such illegitimate behavior in a lambda and execute it. I'd like to know which if either of the compilers are behaving correctly with respect to the div_t
definition.