| 947 | } |
| 948 | |
| 949 | int containerOutOfBounds_wxArrayInt(void) |
| 950 | { |
| 951 | wxArrayInt a; |
| 952 | a.Add(42); |
| 953 | a.Clear(); |
| 954 | // TODO: wxArrayString is defined to be a vector |
| 955 | // TODO: cppcheck-suppress containerOutOfBounds |
| 956 | return a[0]; |
| 957 | } |
| 958 | |
| 959 | void ignoredReturnValue_wxDC_GetSize(const wxDC &dc, wxCoord *width, wxCoord *height) |
| 960 | { |