Changes between Version 1 and Version 2 of CodingTips
- Timestamp:
- 2012-08-10T05:46:25Z (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CodingTips
v1 v2 3 3 == Preprocessor defines, macros, inline functions == 4 4 5 * Prefer using {{{enum}} instead of preprocessor defines for constants5 * Prefer using {{{enum}}} instead of preprocessor defines for constants 6 6 * Preprocessor defines are only necessary when you are using the constant both in C and assembly sources 7 7 * Prefer using static inline functions instead of preprocessor macros