From 067cea67c959ec4e4e0d6087f3a107752ed9724a Mon Sep 17 00:00:00 2001 From: chrchr Date: Mon, 13 Nov 2023 10:52:59 +0100 Subject: [PATCH] Fix test --- test/testsimplifytemplate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testsimplifytemplate.cpp b/test/testsimplifytemplate.cpp index aa4db7d84aa..236ed1b1e5c 100644 --- a/test/testsimplifytemplate.cpp +++ b/test/testsimplifytemplate.cpp @@ -4162,7 +4162,7 @@ class TestSimplifyTemplate : public TestFixture { } void template163() { // #9685 syntax error - const char code[] = "extern \"C++\" template < typename T > T * test ( ) { return nullptr ; }"; + const char code[] = "template < typename T > T * test ( ) { return nullptr ; }"; ASSERT_EQUALS(code, tok(code)); }