Is it ever useful to include a header file more than once in C or C++?
If the mechanism is never used, why would the compiler ever worry about including a file twice; if it really were useless, wouldn't it be more convenient if newer compilers made sure every header is included only once?
Edit:
I understand that there are standard ways of doing things like include guards and pragma once, but why should you have to specify even that? Shouldn't it be the default behavior of the compiler to include files only once?
#multipleincludesor something, for the rare case that you want multiple-inclusion). But C was designed to make a compiler easy to write from scratch, not easy to program for. This made sense in the 1970's, when there were many common architectures, no easily modifiable open-source compilers likegcc, and programs rarely went over 100k lines. It doesn't make sense for 2012. Always make the common case the default! – BlueRaja - Danny Pflughoeft Jun 4 '12 at 17:14