Changes between Version 3 and Version 4 of EFLWebKitCodingStyle
- Timestamp:
- Jan 4, 2012, 4:39:48 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
EFLWebKitCodingStyle
v3 v4 5 5 * Do not use '''Eina_Bool''' type except for public APIs 6 6 * Place '*' operator to data type 7 * Use '''static_cast<...>''' for type casting7 * Use C++ casting for type casting. For example, '''static_cast<...>, const_cast<...>, reinterpret_cast<...>''' 8 8 * Use smart pointers 9 9 * Use c++ new/delete operators … … 82 82 }}} 83 83 84 == Use static_castfor type casting ==84 == Use C++ casting for type casting == 85 85 86 86 === Right ===