Changes between Version 1 and Version 2 of CodingTips


Ignore:
Timestamp:
2012-08-10T05:46:25Z (12 years ago)
Author:
Vojtech Horky
Comment:

Fix formatting

Legend:

Unmodified
Added
Removed
Modified
  • CodingTips

    v1 v2  
    33== Preprocessor defines, macros, inline functions ==
    44
    5  * Prefer using {{{enum}} instead of preprocessor defines for constants
     5 * Prefer using {{{enum}}} instead of preprocessor defines for constants
    66   * Preprocessor defines are only necessary when you are using the constant both in C and assembly sources
    77 * Prefer using static inline functions instead of preprocessor macros