Fatal Error C1055
compiler limit : out of keys
The file being compiled contained too many symbols. The compiler sets up a symbol table and uses hash keys to look up symbols in the table. This error indicates that the compiler has reached its limit for these keys.
Tips
- Try to split the file into smaller files, and recompile.
- Only include header files that are absolutely necessary.
- Where possible, reuse temporary and global variables so that fewer symbols are generated, and thus, fewer keys are needed.