precompiled headers?

Started by
2 comments, last by DrEvil 20 years, 2 months ago
Can someone explain to me what a precompiled header is and how it differs from a normal header? The more info the better(when it''s good to use, when not...) Thanks J
Advertisement
anyone?
yup

"Sneftel is correct, if rather vulgar." --Flarelocke
Precompiled headers are there to make build times quicker by reducing the amount of files to recompile after you have made changes to your header files as all source files which #include the edited header get recompiled even if the changes made have nothing to do with that file. This what PCHs are there for.

This topic is closed to new replies.

Advertisement