|
|
|
|
|
by daemin
2399 days ago
|
|
One other ordering I've encountered which helps remove errors is to list the headers in reverse generic order. Meaning that you go from the most specific header files to the least specific. So <algorithm> and <windows.h> would be getting included last. This helps ensure that your specific project level header files have all the necessary forward declares and includes to be a fully functioning and complete header. |
|