标签:
Assertion failed: !"Bad error code", file VMem.c, line 715 |
IDE: C++ Builder 6.0
Project type: VCL
Appears when linking the following code:
#define ARRAY_SIZE 10000000 |
When this error occurs, restart C++ Builder and nothing has been lost. Do change the code as in one of the examples below.
#define ARRAY_SIZE 1000000 |
#define ARRAY_SIZE 10000000 |
#include <vector> |
Go back to Richel Bilderbeek‘s C++ page.
Go back to Richel Bilderbeek‘s homepage.
(C++) Assertion failed: !"Bad error code", file VMem.c, line 715
标签:
原文地址:http://www.cnblogs.com/honeynm/p/4493855.html