From b42feb7b8847413f1a22b7c816328d671f032d67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Kr=C3=BCger?= Date: Fri, 8 Apr 2016 12:09:16 +0200 Subject: [PATCH] fix testrunner (sample was not updated in f5e8a72dc2d53492fecd7f387f076fc9f542175a). --- test/testfunctions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testfunctions.cpp b/test/testfunctions.cpp index 132db9496..fb2a547ff 100644 --- a/test/testfunctions.cpp +++ b/test/testfunctions.cpp @@ -230,7 +230,7 @@ private: "{\n" " char *x = alloca(10);\n" "}", "test.cpp"); // #4382 - there are no VLAs in C++ - ASSERT_EQUALS("[test.cpp:3]: (warning) Obsolete function 'alloca' called. In C++11 and later it is recommended to use std::array<> instead.\n", errout.str()); + ASSERT_EQUALS("[test.cpp:3]: (warning) Obsolete function 'alloca' called.\n", errout.str()); check("void f()\n" "{\n"