You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
333 B

This error type is reported only in C++, in versions >= C++11.
The code is trying to access an element of a vector that Infer believes to be
empty. Such an access will cause undefined behavior at runtime.
```c++
#include <vector>
int foo(){
const std::vector<int> vec;
return vec[0]; // Empty vector access reported here
}
```