Changes between Version 22 and Version 23 of CodingStyle


Ignore:
Timestamp:
Aug 1, 2012, 12:53:34 PM (12 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CodingStyle

    v22 v23  
    137137
    138138 * 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>`).
    140140
    141141=== Extern declarations === #extern