Changes between Version 39 and Version 40 of Coding_Conventions


Ignore:
Timestamp:
Nov 10, 2018, 6:07:17 PM (5 years ago)
Author:
Silier
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Coding_Conventions

    v39 v40  
    268268   * Prefer global variables over singletons, because then they're not trying to hide their ugliness.
    269269
     270 * Use `nullptr` instead of `NULL`.
     271
    270272 * Don't do "`if (p) delete p;`". (That's redundant since "`delete nullptr;`" is safe and does nothing.)
    271273