Sdílet prostřednictvím


Upozornění C26483

Hodnota 'value' je mimo hranice (0, 'bound') proměnné 'variable'. Indexování do polí pomocí konstantních výrazů, které jsou v mezích matice (bounds.2).

Viz také

C++ Core Guidelines Bounds.2

Příklad

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
}