Changes between Version 22 and Version 23 of CodingStyle
- Timestamp:
- Aug 1, 2012, 12:53:34 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CodingStyle
v22 v23 137 137 138 138 * A `.cpp` file should have the minimum set of #includes to get that particular file to compile (e.g. the includes needed by {{{foo.cpp}}} should be in {{{foo.cpp}}}, not {{{foo.h}}}). 139 * Includes should be ordered from general (`<stdio.h>`) to specific (`thisfile.h`).139 * Includes should be ordered from specific (`thisfile.h`) to general (`<stdio.h>`). 140 140 141 141 === Extern declarations === #extern