Changes between Version 20 and Version 21 of Coding_Conventions


Ignore:
Timestamp:
May 4, 2013, 11:41:41 AM (11 years ago)
Author:
tuan kuranes
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Coding_Conventions

    v20 v21  
    219219);
    220220}}}
    221 
     221 
    222222 * Use STL when appropriate.
    223223
     
    233233 * If deleting a pointer, and it's not in a destructor, and it's not being immediately assigned a new value, use "`SAFE_DELETE(p)`" (which is equivalent to "`delete p; p = NULL;`") to avoid dangling pointers to deleted memory.
    234234
     235 * Optimisations as you go from ​http://www.tantalon.com/pete/cppopt/main.htm (furthermost the "Pass Class Parameters by Reference" part.)
     236
    235237== !JavaScript ==
    236238