Changes between Version 13 and Version 14 of EFLWebKitCodingStyle


Ignore:
Timestamp:
Aug 16, 2012 1:42:20 AM (12 years ago)
Author:
kenneth@webkit.org
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • EFLWebKitCodingStyle

    v13 v14  
    66 * Place '*' operator to data type
    77 * 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.
    99 * Use c++ '''new/delete''' operators
    1010 * Use '''const''' keyword instead of '''#define''' when you define constant variable.