test/cfg/std.cpp fix 'make checkcfg', std::vector needs to have <vector> #included

This commit is contained in:
Matthias Krüger 2017-03-06 16:59:17 +01:00
parent 428c376b61
commit 65846efb6b
1 changed files with 2 additions and 1 deletions

View File

@ -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();
}
}