forked from OSchip/llvm-project
Improve comment in couple of fields of DeclInfo.
llvm-svn: 166192
This commit is contained in:
parent
a031c57417
commit
a52fd9783f
|
@ -902,11 +902,12 @@ public:
|
|||
|
||||
/// Information about the declaration, useful to clients of FullComment.
|
||||
struct DeclInfo {
|
||||
/// Declaration the comment is attached to. Should not be NULL.
|
||||
/// Declaration the comment is actually attached to (in the source).
|
||||
/// Should not be NULL.
|
||||
const Decl *CommentDecl;
|
||||
|
||||
/// CurrentDecl is the declaration for which comment is being put into an XML comment.
|
||||
/// Not necessarily same as CommentDecl.
|
||||
/// CurrentDecl is the declaration with which the FullComment is associated.
|
||||
/// The information in the DeclInfo corresponds to CurrentDecl.
|
||||
const Decl *CurrentDecl;
|
||||
|
||||
/// Parameters that can be referenced by \\param if \c CommentDecl is something
|
||||
|
|
Loading…
Reference in New Issue