commit | 2a268f2629b49958427e8eb02f2c3d565be71acc | [log] [tgz] |
---|---|---|
author | Fariborz Jahanian <fjahanian@apple.com> | Tue Mar 05 01:05:07 2013 +0000 |
committer | Fariborz Jahanian <fjahanian@apple.com> | Tue Mar 05 01:05:07 2013 +0000 |
tree | 9b44a3b1d9facc7579362f6c2a0f7d489668598f | |
parent | 5aff3f1e9a66fa72576a6b04c8c319c17e0360c6 [diff] [blame] |
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
diff --git a/lib/AST/CommentParser.cpp b/lib/AST/CommentParser.cpp index 09912c6..c361679 100644 --- a/lib/AST/CommentParser.cpp +++ b/lib/AST/CommentParser.cpp
@@ -706,6 +706,8 @@ TextBegin, Text); consumeToken(); + S.checkFunctionDeclVerbatimLine(VL); + return VL; }