Compiler Error C3554
'decltype' cannot be combined with any other type-specifier
You cannot qualify the decltype()
keyword with any type specifier. For example, the following code fragment yields error C3554.
int x;
unsigned decltype(x); // C3554
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
'decltype' cannot be combined with any other type-specifier
You cannot qualify the decltype()
keyword with any type specifier. For example, the following code fragment yields error C3554.
int x;
unsigned decltype(x); // C3554