forked from OSchip/llvm-project
Fix clang-move test after clang-format update r295312
llvm-svn: 295317
This commit is contained in:
parent
a1b384c4ce
commit
8fcdd5ab96
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue