Posts
C++ Core Guidelines: Lifetime Safety And Checking the Rules
/
0 Comments
The lifetime safety profile in the C++ core guidelines boils down to one issue: don't dereference a possible…
C++ Core Guidelines: Bounds Safety
Today's post concerns the second C++ Core Guidelines: Bounds Safety profile. The goal of the profile…
C++ Core Guidelines: Type Safety by Design
What does that mean: type safety by design. Type safety by design just means that you always initialize…
C++ Core Guidelines: Type Safety
The C++ core guidelines support three profiles: type safety, bounds safety, and lifetime safety. Thanks…
C++ Core Guidelines: Profiles
Informally, profiles are a subset of rules of the C++ core guidelines for specific concerns such as type…