Fatal Error C1022

 

The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.

The latest version of this topic can be found at Fatal Error C1022.

expected #endif

An #if, #ifdef, or #ifndef directive has no matching #endif directive. Be sure each #if, #ifdef, or #ifndef has a matching #endif.

The following sample generates C1022:

// C1022.cpp  
#define true 1  
  
#if (true)  
#else   
#else    // C1022  

Possible resolution:

// C1022b.cpp  
// compile with: /c  
#define true 1  
  
#if (true)  
#else   
#endif  

Show: