From 65846efb6b8ba417dc698bb4d52fc75bca05681a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Kr=C3=BCger?= Date: Mon, 6 Mar 2017 16:59:17 +0100 Subject: [PATCH] test/cfg/std.cpp fix 'make checkcfg', std::vector needs to have #included --- test/cfg/std.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/cfg/std.cpp b/test/cfg/std.cpp index 21e6dd310..bf562812f 100644 --- a/test/cfg/std.cpp +++ b/test/cfg/std.cpp @@ -25,6 +25,7 @@ #include #include #include +#include void bufferAccessOutOfBounds(void) { @@ -3257,4 +3258,4 @@ void stdvector() std::vector v; // cppcheck-suppress ignoredReturnValue v.size(); -} \ No newline at end of file +}