Changes between Version 4 and Version 5 of CodingStyle


Ignore:
Timestamp:
Dec 22, 2007, 5:23:21 PM (16 years ago)
Author:
Nicolas
Comment:

Fix error_numbers.h filename, and link to it. Fix a mistake on a previous edit of mine.

Legend:

Unmodified
Added
Removed
Modified
  • CodingStyle

    v4 v5  
    3333);
    3434}}}
    35  * {{{switch}}} statements: {{{case}}} labels are at same indent level as {{{}}}switch:
     35 * {{{switch}}} statements: {{{case}}} labels are at same indent level as {{{switch}}}:
    3636{{{
    3737switch (foo) {
     
    110110=== Error codes ===
    111111
    112  * (Almost) all functions should return an integer error code. Nonzero means error. See lib/errornumbers.h for a list of error codes.
     112 * (Almost) all functions should return an integer error code. Nonzero means error. See [source:trunk/boinc/lib/error_numbers.h lib/error_numbers.h] for a list of error codes.
    113113 * Calls to functions that return an error code should check the code. Generally they should return on error, e.g.:
    114114{{{