Changes between Version 6 and Version 7 of EFLWebKitCodingStyle
- Timestamp:
- Jul 15, 2012, 10:32:36 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
EFLWebKitCodingStyle
v6 v7 68 68 }}} 69 69 70 == Use "void" for empty parameter of public APIs == 71 72 === Right === 73 74 {{{ 75 EAPI Ewk_Context *ewk_context_new(void); 76 }}} 77 78 === Wrong === 79 80 {{{ 81 EAPI Ewk_Context *ewk_context_new(); 82 }}} 70 83 71 84 == Place '*' operator to data type ==