Changes between Version 3 and Version 4 of EFLWebKitCodingStyle


Ignore:
Timestamp:
Jan 4, 2012 4:39:48 PM (12 years ago)
Author:
gyuyoung.kim@samsung.com
Comment:

Update type casting.

Legend:

Unmodified
Added
Removed
Modified
  • EFLWebKitCodingStyle

    v3 v4  
    55 * Do not use '''Eina_Bool''' type except for public APIs
    66 * Place '*' operator to data type
    7  * Use '''static_cast<...>''' for type casting
     7 * Use C++ casting for type casting. For example, '''static_cast<...>, const_cast<...>, reinterpret_cast<...>'''
    88 * Use smart pointers
    99 * Use c++ new/delete operators
     
    8282}}}
    8383
    84 == Use static_cast for type casting ==
     84== Use C++ casting for type casting ==
    8585
    8686=== Right ===