diff options
Diffstat (limited to 'clang/test/Index/format-comment-cdecls.c')
-rw-r--r-- | clang/test/Index/format-comment-cdecls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Index/format-comment-cdecls.c b/clang/test/Index/format-comment-cdecls.c index 31ec95b9212..ff36dd7fd08 100644 --- a/clang/test/Index/format-comment-cdecls.c +++ b/clang/test/Index/format-comment-cdecls.c @@ -90,10 +90,10 @@ enum e { *\brief block declaration */ int (^Block) (int i, int j); -// CHECK: <Declaration>int (^Block) (int, int)</Declaration> +// CHECK: <Declaration>int (^Block)(int, int)</Declaration> /** *\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) {\n}</Declaration> |