diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2012-06-28 00:01:41 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2012-06-28 00:01:41 +0000 |
commit | f199b9cd4af562029a3c7b82c4672819b2c39e70 (patch) | |
tree | 90933040a34d37d931eecdebe8c8bf1e508e583b /test/Index/annotate-comments.cpp | |
parent | af505c58222a87058fa4ac26cd8da27c141eec42 (diff) |
Teach \brief parser about commands that start a new paragraph implicitly
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159309 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Index/annotate-comments.cpp')
-rw-r--r-- | test/Index/annotate-comments.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Index/annotate-comments.cpp b/test/Index/annotate-comments.cpp index cb0630b739..59ffa88348 100644 --- a/test/Index/annotate-comments.cpp +++ b/test/Index/annotate-comments.cpp @@ -198,6 +198,11 @@ void isdoxy45(void); #define FOO void notdoxy46(void); +/// IS_DOXYGEN_START Aaa bbb +/// \param ccc +/// \returns ddd IS_DOXYGEN_END +void isdoxy47(int); + #endif // RUN: rm -rf %t @@ -265,4 +270,5 @@ void notdoxy46(void); // CHECK: annotate-comments.cpp:185:6: FunctionDecl=isdoxy44:{{.*}} BriefComment=[ IS_DOXYGEN_START Aaa bbb\n ccc.\n] // CHECK: annotate-comments.cpp:195:6: FunctionDecl=isdoxy45:{{.*}} BriefComment=[\n Ddd eee.\n Fff.\n] +// CHECK: annotate-comments.cpp:204:6: FunctionDecl=isdoxy47:{{.*}} BriefComment=[ IS_DOXYGEN_START Aaa bbb\n ] |