Search Results

2
votes

How should I detect unnecessary #include files in a large C++ project?

Start with each include file, and ensure that each include file only includes what is necessary to compile itself. Any include files that are then missing for the C++ files, can be added to the C+ …