Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 595 Bytes

fatal-error-c1026.md

File metadata and controls

19 lines (14 loc) · 595 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Fatal Error C1026
Fatal Error C1026
11/04/2016
C1026
C1026
89bb9d40-673a-44aa-a9f4-b42c07b49d44

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.