Changes between Version 35 and Version 36 of MapGuideCodingStandards
- Timestamp:
- 09/18/22 22:35:17 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MapGuideCodingStandards
v35 v36 28 28 29 29 Avoid using language constructs or standard library features that were introduced in C++ versions prior to this version, but have since been deprecated (eg. Usage of `std::auto_ptr` instead of `std::unique_ptr`) 30 31 A good reference guide to know what constructs or library features are valid for any C++ version is [https://en.cppreference.com/ cppreference] 30 32 31 33 == Consistency with .NET ==