Fix clang-move test after clang-format update r295312

llvm-svn: 295317
This commit is contained in:
Krasimir Georgiev 2017-02-16 13:17:38 +00:00
parent a1b384c4ce
commit 8fcdd5ab96
1 changed files with 3 additions and 3 deletions

View File

@ -65,7 +65,7 @@ const char TestCC[] = "#include \"foo.h\"\n"
"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 \"foo.h\"\n"
"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 a {\n"
"static int kConstInt2 = 1;\n"
"\n"
"/** comment4\n"
"*/\n"
" */\n"
"static int help() {\n"
" int a = 0;\n"
" return a;\n"