Changes between Version 13 and Version 14 of EFLWebKitCodingStyle
- Timestamp:
- Aug 16, 2012, 1:42:20 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
EFLWebKitCodingStyle
v13 v14 6 6 * Place '*' operator to data type 7 7 * Use C++ casting for type casting. For example, '''static_cast<...>, const_cast<...>, reinterpret_cast<...>''' 8 * Use '''smart pointers''' 8 * Use '''smart pointers''', like WKEinaSharedString, OwnPtr, RefPtr, etc. 9 9 * Use c++ '''new/delete''' operators 10 10 * Use '''const''' keyword instead of '''#define''' when you define constant variable.