Fatal Error C1126

'identifier' : automatic allocation exceeds size

The space allocated for the local variables of a function exceeded the given limit.

Use the malloc run-time function or the new function to allocate large amounts of space for data.

The total space required may be slightly larger than the space required for the local variables. For example, the compiler will add an extra 20 bytes to the stack allocation when a swapable function is compiled.