Notiz
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Iech unzemellen oder Verzeechnesser ze änneren.
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Verzeechnesser ze änneren.
signed/unsigned keywords mutually exclusive
Remarks
The keywords signed and unsigned are used in a single declaration.
Example
The following example generates C2042:
// C2042.cpp
unsigned signed int i; // C2042
Possible resolution:
// C2042b.cpp
// compile with: /c
unsigned int i;
signed int ii;