diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/Index/comment-c-decls.c | 4 | ||||
-rw-r--r-- | test/Index/format-comment-cdecls.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test/Index/comment-c-decls.c b/test/Index/comment-c-decls.c index f6d3feec81..261481a5ea 100644 --- a/test/Index/comment-c-decls.c +++ b/test/Index/comment-c-decls.c @@ -95,10 +95,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> diff --git a/test/Index/format-comment-cdecls.c b/test/Index/format-comment-cdecls.c index 31ec95b921..ff36dd7fd0 100644 --- a/test/Index/format-comment-cdecls.c +++ b/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> |