We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e8839a commit bfa8c6fCopy full SHA for bfa8c6f
1 file changed
test/testtokenize.cpp
@@ -8625,7 +8625,7 @@ class TestTokenizer : public TestFixture {
8625
preprocessor.setDirectives(tokens1);
8626
8627
// Tokenizer..
8628
- Tokenizer tokenizer(&settings0, this);
+ Tokenizer tokenizer(&settings, this);
8629
tokenizer.createTokens(std::move(tokens2));
8630
tokenizer.simplifyTokens1("");
8631
@@ -8652,9 +8652,9 @@ class TestTokenizer : public TestFixture {
8652
ASSERT_EQUALS("\n\n##file 1\n"
8653
"1: struct A {\n"
8654
"2: int a ; a = 1 ;\n"
8655
- "3: void f ( ) { g<int> ( 1 ) ; }\n"
8656
- "4: void g<int> ( int x ) ;\n"
8657
- "5: } ; void A :: g<int> ( int x ) { a = 2 ; }\n",
+ "3: void f ( ) ;\n"
+ "4:\n"
+ "5: } ;\n",
8658
checkHeaders(code, false));
8659
}
8660
};
0 commit comments