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.
unexpected #else
Remarks
The #else directive appears outside an #if, #ifdef, or #ifndef construct. Use #else only within one of these constructs.
Example
The following example generates C1019:
// C1019.cpp
#else // C1019
#endif
int main() {}
Possible resolution:
// C1019b.cpp
#if 1
#else
#endif
int main() {}