Changes between Version 29 and Version 30 of CodingStyle


Ignore:
Timestamp:
Jan 3, 2017, 7:15:06 PM (7 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CodingStyle

    v29 v30  
    112112 * Don't use `memset()` or `memcpy()` to initialize or copy classes that are non-C compatible.
    113113   Write a default constructor and a copy constructor instead.
     114 * Dynamic memory allocation.  Functions shouldn't return pointers to malloc'd items.
    114115
    115116=== Error codes === #error-codes