Skip to content

Commit 2f97117

Browse files
committed
Format
1 parent a37a580 commit 2f97117

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/testsimplifytokens.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -273,9 +273,9 @@ class TestSimplifyTokens : public TestFixture {
273273

274274
void combine_wstrings_Windows() {
275275
#if defined(_WIN32) && defined(UNICODE)
276-
const char code[] = "const auto* f() {\n"
277-
" return _T(\"abc\") _T(\"def\") _T(\"ghi\");\n"
278-
"}";
276+
const char code[] = "const auto* f() {\n"
277+
" return _T(\"abc\") _T(\"def\") _T(\"ghi\");\n"
278+
"}";
279279

280280
ASSERT_EQUALS("const auto * f ( ) { return L\"abcdefghi\" ; }", tok(code, /*simplify*/ true, cppcheck::Platform::Type::Native));
281281
#endif

0 commit comments

Comments
 (0)