Skip to content

Commit

Permalink
Fix #12312 FP variableScope with templates in namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
chrchr-github committed Mar 21, 2024
1 parent e2081e8 commit c1af70b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/templatesimplifier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2172,7 +2172,7 @@ void TemplateSimplifier::expandTemplate(
addNamespace(templateDeclaration, tok3);
}
mTokenList.addtoken(newName, tok3);
} else if (!Token::Match(tok3->next(), ":|{|=|;|[|]"))
} else if (!Token::Match(tok3->next(), "[:{=;[]),]"))
tok3->str(newName);
continue;
}
Expand Down
19 changes: 19 additions & 0 deletions test/testsimplifytemplate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ class TestSimplifyTemplate : public TestFixture {
TEST_CASE(template178);
TEST_CASE(template_specialization_1); // #7868 - template specialization template <typename T> struct S<C<T>> {..};
TEST_CASE(template_specialization_2); // #7868 - template specialization template <typename T> struct S<C<T>> {..};
TEST_CASE(template_specialization_3);
TEST_CASE(template_enum); // #6299 Syntax error in complex enum declaration (including template)
TEST_CASE(template_unhandled);
TEST_CASE(template_default_parameter);
Expand Down Expand Up @@ -4562,6 +4563,24 @@ class TestSimplifyTemplate : public TestFixture {
"S<C<int>> s;";
const char exp[] = "template < typename T > struct C { } ; template < typename T > struct S { a } ; struct S<C<int>> ; S<C<int>> s ; struct S<C<int>> { b } ;";
ASSERT_EQUALS(exp, tok(code));
}

void template_specialization_3() {
const char code[] = "namespace N {\n" // #12312
" template <typename T>\n"
" bool equal(const T&);\n"
" template <>\n"
" bool equal<int>(const int&) { return false; }\n"
"}\n"
"void f(bool equal, int i) { if (equal) {} }\n";
const char exp[] = "namespace N { "
"bool equal<int> ( const int & ) ; "
"template < typename T > "
"bool equal ( const T & ) ; "
"bool equal<int> ( const int & ) { return false ; } "
"} "
"void f ( bool equal , int i ) { if ( equal ) { } }";
ASSERT_EQUALS(exp, tok(code));
}

void template_enum() {
Expand Down

0 comments on commit c1af70b

Please sign in to comment.