Changes between Version 6 and Version 7 of EFLWebKitCodingStyle


Ignore:
Timestamp:
Jul 15, 2012 10:32:36 PM (12 years ago)
Author:
eunmi15.lee@samsung.com
Comment:

Add "Use "void" for empty parameter of public APIs"

Legend:

Unmodified
Added
Removed
Modified
  • EFLWebKitCodingStyle

    v6 v7  
    6868}}}
    6969
     70== Use "void" for empty parameter of public APIs ==
     71
     72=== Right ===
     73
     74{{{
     75EAPI Ewk_Context *ewk_context_new(void);
     76}}}
     77
     78=== Wrong ===
     79
     80{{{
     81EAPI Ewk_Context *ewk_context_new();
     82}}}
    7083
    7184== Place '*' operator to data type ==