Debugger is bugging
fatal error C1010: unexpected end of file while looking for precompiled header directive
any clues?
go into project->settings->c/c++->precompiled headers & select Not using Precompiled headers. Note that if you''re using MFC, this isn''t going to work.
ld
ld
No Excuses
precompiled headers are very important for making fast compiles, don't remove it!
just go to the top of the file and add #include "stdafx.h" or whatever the name of your precompiled header is.
precompiled headers virtually elliminate the need for a whole string of includes up the top of every file... and can make compiles literally 10x faster.. if not more.
I'd reccommend everyone who doesn't know what they are look into them.
| - Project-X - my mega project.. big things comming soon - | - adDeath - an ad blocker I made - | - email me - |
[edited by - RipTorn on January 12, 2003 6:21:40 PM]
just go to the top of the file and add #include "stdafx.h" or whatever the name of your precompiled header is.
precompiled headers virtually elliminate the need for a whole string of includes up the top of every file... and can make compiles literally 10x faster.. if not more.
I'd reccommend everyone who doesn't know what they are look into them.
| - Project-X - my mega project.. big things comming soon - | - adDeath - an ad blocker I made - | - email me - |
[edited by - RipTorn on January 12, 2003 6:21:40 PM]
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement
Recommended Tutorials
Advertisement