Changes between Version 35 and Version 36 of MapGuideCodingStandards


Ignore:
Timestamp:
09/18/22 22:35:17 (2 years ago)
Author:
jng
Comment:

Add link to cppreference

Legend:

Unmodified
Added
Removed
Modified
  • MapGuideCodingStandards

    v35 v36  
    2828
    2929Avoid 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
     31A good reference guide to know what constructs or library features are valid for any C++ version is [https://en.cppreference.com/ cppreference]
    3032
    3133== Consistency with .NET ==