Jan 27, 2021 at 6:25pm
> One compiler appears to implicitly include other headers, the other doesn't.
The standard allows it:
Conforming implementations: Headers: A C++ header may include other C++ headers.
Jan 27, 2021 at 6:31pm
It makes it hard to know what to include at times when switching compilers without a lot of trial and error.
At the very least including what could be unnecessary headers won't have a huge impact on compile time or run time performance.
A committee designing a horse would create a giraffe. Or worse.
Jan 27, 2021 at 6:47pm
> It makes it hard to know what to include at times when switching compilers
No; the standard headers that must be included (in a potable program) before a library facility is used is specified by the standard.