This diagnostic rule is based on the software development guidelines developed by AUTOSAR (AUTomotive Open System ARchitecture).
The size of an array must be specified explicitly.
The analyzer issues this warning when it detects a declaration of an array whose size is not specified explicitly. If the array size can be inferred from the initializer, the warning is not issued.
This warning is also issued for a function parameter written as an array whose size is not specified explicitly. For example:
void foo(int arr[])
{
....
}
To eliminate the warning, rewrite the parameter declaration or specify the expected array size explicitly. To achieve that, the code above could be modified as follows:
void foo(int *arr)
{
....
}
Or:
void foo(int arr[256])
{
....
}
This diagnostic is classified as:
|