diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2013-03-05 01:05:07 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2013-03-05 01:05:07 +0000 |
commit | 2a268f2629b49958427e8eb02f2c3d565be71acc (patch) | |
tree | 9b44a3b1d9facc7579362f6c2a0f7d489668598f /lib/AST/CommentParser.cpp | |
parent | 5aff3f1e9a66fa72576a6b04c8c319c17e0360c6 (diff) | |
download | clang-2a268f2629b49958427e8eb02f2c3d565be71acc.tar.gz |
doc parsing. We want to issue a strong warning when
an @function comment is not followed by a function decl.
// rdar://13094352
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176468 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/CommentParser.cpp')
-rw-r--r-- | lib/AST/CommentParser.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/AST/CommentParser.cpp b/lib/AST/CommentParser.cpp index 09912c6188..c361679e90 100644 --- a/lib/AST/CommentParser.cpp +++ b/lib/AST/CommentParser.cpp @@ -706,6 +706,8 @@ VerbatimLineComment *Parser::parseVerbatimLine() { TextBegin, Text); consumeToken(); + S.checkFunctionDeclVerbatimLine(VL); + return VL; } |