Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'type modifier' : can not be used with type 'typename'
A type modifier, whether it is signed
or unsigned
, cannot be used with a non-integer type. type modifier is ignored.
The following sample generates C4076; to fix it, remove the unsigned
type modifier:
// C4076.cpp
// compile with: /W1 /LD
unsigned double x; // C4076