We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 731d0fd commit 541f9fdCopy full SHA for 541f9fd
1 file changed
test/testtokenize.cpp
@@ -5310,10 +5310,15 @@ class TestTokenizer : public TestFixture {
5310
"}";
5311
ASSERT_EQUALS(expected, tokenizeAndStringify(code));
5312
}
5313
+
5314
{
5315
const char code[] = "using namespace std;\n"
5316
+ "void move() {}\n"
5317
+ "void string() {}\n"
5318
"string_view f() { return string(); }\n";
- expected = "std :: string_view f ( ) { return std :: string ( ) ; }";
5319
+ expected = "void move ( ) { }\n"
5320
+ "void string ( ) { }\n"
5321
+ "std :: string_view f ( ) { return std :: string ( ) ; }";
5322
5323
5324
0 commit comments