Fatal Error C1026

 

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 C1026.

parser stack overflow, program too complex

The space required to parse the program caused a compiler stack overflow.

Decrease the complexity of expressions by:

  • Decreasing nesting in for and switch statements. Put more deeply nested statements in separate functions.

  • Breaking up long expressions that involve comma operators or function calls.

Show: