[clang-tools-extra] r295317 - Fix clang-move test after clang-format update r295312
Krasimir Georgiev via cfe-commits
cfe-commits at lists.llvm.org
Thu Feb 16 05:17:38 PST 2017
Author: krasimir
Date: Thu Feb 16 07:17:38 2017
New Revision: 295317
URL: http://llvm.org/viewvc/llvm-project?rev=295317&view=rev
Log:
Fix clang-move test after clang-format update r295312
Modified:
clang-tools-extra/trunk/unittests/clang-move/ClangMoveTests.cpp
Modified: clang-tools-extra/trunk/unittests/clang-move/ClangMoveTests.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/unittests/clang-move/ClangMoveTests.cpp?rev=295317&r1=295316&r2=295317&view=diff
==============================================================================
--- clang-tools-extra/trunk/unittests/clang-move/ClangMoveTests.cpp (original)
+++ clang-tools-extra/trunk/unittests/clang-move/ClangMoveTests.cpp Thu Feb 16 07:17:38 2017
@@ -65,7 +65,7 @@ const char TestCC[] = "#include \"foo.h\
"static int kConstInt2 = 1;\n"
"\n"
"/** comment4\n"
- "*/\n"
+ " */\n"
"static int help() {\n"
" int a = 0;\n"
" return a;\n"
@@ -120,7 +120,7 @@ const char ExpectedTestCC[] = "#include
"static int kConstInt2 = 1;\n"
"\n"
"/** comment4\n"
- "*/\n"
+ " */\n"
"static int help() {\n"
" int a = 0;\n"
" return a;\n"
@@ -174,7 +174,7 @@ const char ExpectedNewCC[] = "namespace
"static int kConstInt2 = 1;\n"
"\n"
"/** comment4\n"
- "*/\n"
+ " */\n"
"static int help() {\n"
" int a = 0;\n"
" return a;\n"
More information about the cfe-commits
mailing list