diff options
Diffstat (limited to 'clang/test/Index/comment-c-decls.c')
-rw-r--r-- | clang/test/Index/comment-c-decls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Index/comment-c-decls.c b/clang/test/Index/comment-c-decls.c index 261481a5ea6..879f9a265a5 100644 --- a/clang/test/Index/comment-c-decls.c +++ b/clang/test/Index/comment-c-decls.c @@ -73,7 +73,7 @@ struct S { */ double dS1; }; -// CHECK: <Declaration>struct S {\n}</Declaration> +// CHECK: <Declaration>struct S {}</Declaration> // CHECK: <Declaration>int iS1</Declaration> // CHECK: <Declaration>double dS1</Declaration> @@ -101,4 +101,4 @@ int (^Block) (int i, int j); *\brief block declaration */ int (^Block1) (int i, int j) = ^(int i, int j) { return i + j; }; -// CHECK: <Declaration>int (^Block1)(int, int) = ^(int i, int j) {\n}</Declaration> +// CHECK: <Declaration>int (^Block1)(int, int) = ^(int i, int j) {}</Declaration> |