Avertissement C26483

La valeur 'value' est en dehors des limites (0, 'bound') de la variable 'variable'. Indexer uniquement dans des tableaux à l’aide d’expressions constantes qui se trouvent dans des limites du tableau (bounds.2).

Voir aussi

C++ Core Guidelines Bounds.2

Exemple

void function()
{
    std::array<int, 3> arr1 { 1, 2, 3 };
    arr1[3] = 4; // C26483, 3 is outside the bounds of the array

    int arr2[] { 1, 2, 3 };
    arr2[3] = 4; // C26483, 3 is outside the bounds of the array
}