z_open 3 days ago

His opinions on include files have fallen out of favor because compiling is faster and it adds needless work. Are there organizations that still do this? All the style guides I've seen do not.

3
csb6 3 days ago

I believe clang and gcc avoid reading in and re-processing include files that are already included, so his advice is unnecessary and creates a lot of maintenance burden, especially for C++ where a lot more code is in header files. It may still be useful for old compilers, though.

kevin_thibedeau 3 days ago

They recognize include guards and skip any further inclusions for those cases. There are scenarios where you may want multiple inclusion and you can still have that.

dapperdrake 3 days ago

If your filesystem and disks are fast enough, then maybe Rob's assumptions don't apply.

ryandrake 3 days ago

I still adhere to this for personal hobby projects, more out of a sense of craftsmanship than anything practical at this point.