The Visual C++ Team announces a preview of the Lifetime Safety checker for CppCoreCheck:
C++ Core Guidelines Checkers: Preview of the Lifetime Safety checker
From the article:
Lifetime safety is ensuring that the lifetime of any object matches its use. That is, don’t leak objects by forgetting to delete them in the case that they were allocated on the heap, and don’t access objects...
Add a Comment
Comments are closed.