Changes between Version 29 and Version 30 of CodingStyle
- Timestamp:
- Jan 3, 2017, 7:15:06 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CodingStyle
v29 v30 112 112 * Don't use `memset()` or `memcpy()` to initialize or copy classes that are non-C compatible. 113 113 Write a default constructor and a copy constructor instead. 114 * Dynamic memory allocation. Functions shouldn't return pointers to malloc'd items. 114 115 115 116 === Error codes === #error-codes