test/cfg/std.cpp fix 'make checkcfg', std::vector needs to have <vector> #included
This commit is contained in:
parent
428c376b61
commit
65846efb6b
|
@ -25,6 +25,7 @@
|
|||
#include <cinttypes>
|
||||
#include <istream>
|
||||
#include <fstream>
|
||||
#include <vector>
|
||||
|
||||
void bufferAccessOutOfBounds(void)
|
||||
{
|
||||
|
@ -3257,4 +3258,4 @@ void stdvector()
|
|||
std::vector<int> v;
|
||||
// cppcheck-suppress ignoredReturnValue
|
||||
v.size();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue