diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index d7042fc..b65deb2 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -20127,11 +20127,11 @@ which cover other unsafe operations that allow bounds violations. Bounds safety profile summary: * Bounds.1: Don't use pointer arithmetic. Use `span` instead: -[Pass pointers to single objects (only)](#Ri-array) and [Keep pointer arithmetic simple](#Res-simple). +[Pass pointers to single objects (only)](#Ri-array) and [Keep pointer arithmetic simple](#Res-ptr). * Bounds.2: Only index into arrays using constant expressions: -[Pass pointers to single objects (only)](#Ri-array) and [Keep pointer arithmetic simple](#Res-simple). +[Pass pointers to single objects (only)](#Ri-array) and [Keep pointer arithmetic simple](#Res-ptr). * Bounds.3: No array-to-pointer decay: -[Pass pointers to single objects (only)](#Ri-array) and [Keep pointer arithmetic simple](#Res-simple). +[Pass pointers to single objects (only)](#Ri-array) and [Keep pointer arithmetic simple](#Res-ptr). * Bounds.4: Don't use standard-library functions and types that are not bounds-checked: [Use the standard library in a type-safe manner](#Rsl-bounds).