Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
chrchr-github committed Mar 6, 2024
1 parent b4859d5 commit fc61247
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions test/testsymboldatabase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5555,14 +5555,14 @@ class TestSymbolDatabase : public TestFixture {
void symboldatabase105() {
{
GET_SYMBOL_DB_DBG("template <class T>\n"
"struct S : public std::deque<T> {\n"
" using std::deque<T>::clear;\n"
" void f();\n"
"};\n"
"template <class T>\n"
"void S<T>::f() {\n"
" clear();\n"
"}\n");
"struct S : public std::deque<T> {\n"
" using std::deque<T>::clear;\n"
" void f();\n"
"};\n"
"template <class T>\n"
"void S<T>::f() {\n"
" clear();\n"
"}\n");
ASSERT(db != nullptr);
ASSERT_EQUALS("", errout.str());
const Token* const c = Token::findsimplematch(tokenizer.tokens(), "clear (");
Expand Down

0 comments on commit fc61247

Please sign in to comment.