What does it mean?

Started by
4 comments, last by Songoq 22 years, 4 months ago
D:\Mygames\proba\ARENA.cpp(119) : fatal error C1076: compiler limit : internal heap limit reached; use /Zm to specify a higher limit Could anyone tell me what should I do?
Advertisement
You should probably try the MSDN in the future for problems like these.

[Resist Windows XP''s Invasive Production Activation Technology!]
You may have accidentaly included a header file recursivly. Make sure you have the check in to load a header only once.

  #ifndef MYHEADER_H#define MYHEADER_H   .   .  //all your code   .#endif //MYHEADER_H  


If that is not your problem, I don''t know.

---
Make it work.
Make it right.
Make it fast.
"None of us learn in a vacuum; we all stand on the shoulders of giants such as Wirth and Knuth and thousands of others. Lend your shoulders to building the future!" - Michael Abrash[JavaGaming.org][The Java Tutorial][Slick][LWJGL][LWJGL Tutorials for NeHe][LWJGL Wiki][jMonkey Engine]
I wrote \Zm200
Then come error
D:\Mygames\n\ARENA.cpp(121) : error C2143: syntax error : missing '';'' before ''/''
How I should write this commend?
It''s a compiler option, not a language command.
"Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it." — Brian W. Kernighan
I got that a while ago checjk your includes with all your files. One time In a cpp file I inluded a h file then in the h file for some reason I included that cpp file so they kept includeing eachother. I got that same error message.




Suffered seven plagues, but refused to let the slaves go free. ~ Ross Atherton
Suffered seven plagues, but refused to let the slaves go free. ~ Ross Atherton

This topic is closed to new replies.

Advertisement