diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2012-06-27 23:43:37 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2012-06-27 23:43:37 +0000 |
commit | 7e8729b904f8c45aa5ccc889c0987dcb5f9c9d95 (patch) | |
tree | aee8a73015f168139d6a0fb65ccb69edff5c4202 /clang/test/Index/annotate-comments.cpp | |
parent | b5c1a2b87c22d9da7c76416de089aff79d253e93 (diff) | |
download | bcm5719-llvm-7e8729b904f8c45aa5ccc889c0987dcb5f9c9d95.tar.gz bcm5719-llvm-7e8729b904f8c45aa5ccc889c0987dcb5f9c9d95.zip |
Attaching documentation comments to declarations: don't attach a comment to a declaration if there is a preprocessor directive between them.
llvm-svn: 159305
Diffstat (limited to 'clang/test/Index/annotate-comments.cpp')
-rw-r--r-- | clang/test/Index/annotate-comments.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/test/Index/annotate-comments.cpp b/clang/test/Index/annotate-comments.cpp index 64d1c983bc2..cb0630b7393 100644 --- a/clang/test/Index/annotate-comments.cpp +++ b/clang/test/Index/annotate-comments.cpp @@ -194,6 +194,10 @@ void isdoxy44(void); /// Ggg. IS_DOXYGEN_END void isdoxy45(void); +/// IS_DOXYGEN_NOT_ATTACHED +#define FOO +void notdoxy46(void); + #endif // RUN: rm -rf %t |