Changes between Version 9 and Version 10 of EFLWebKitCodingStyle
- Timestamp:
- Aug 13, 2012, 6:48:43 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
EFLWebKitCodingStyle
v9 v10 10 10 * Use '''const''' keyword instead of '''#define''' when you define constant variable. 11 11 * Use NULL in public C headers instead of 0 12 * Use '''double not operator(!!)''' when you modify a Eina Bool member variable which stores a value in a bit field.12 * Use '''double not operator(!!)''' when you modify or compare with a Eina Bool member variable which stores a value in a bit field. 13 13 14 14 = Example = … … 171 171 }}} 172 172 173 == Use double not operator(!!) when you modify a Eina Bool member variable which stores a value in a bit field. ==173 == Use double not operator(!!) when you modify or compare with a Eina Bool member variable which stores a value in a bit field. == 174 174 === Right === 175 175 {{{