Why decltype of constexpr variable is failed ?
#include <cstdint>
#include <type_traits>
constexpr uint16_t foo(){ return 0;}
constexpr auto cv = foo();
auto v = foo();
static_assert( std::is_same< uint16_t, decltype(cv)>::value, "!"); // failed
static_assert( std::is_same< uint16_t, decltype(v) >::value, "!"); // success
decltype(entity)
specifies the declared type of theentity
specified by this expression.Due to the
constexpr
, (Aconstexpr
specifier used in an object declaration impliesconst
), yourcv
variable is of typeconst uint16_t
.You know that
const uint16_t
is different fromuint16_t
then your line:fail as this is expected.
The line
specifies that the function
foo
can be evaluated at compile time but the function still returns auint16_t
. That why on the linev
is of typeuint16_t
then the lineworks as expected too.