improve comment.

llvm-svn: 42478
This commit is contained in:
Chris Lattner 2007-09-30 08:13:22 +00:00
parent 4730430bd8
commit 90c26ba9de
1 changed files with 4 additions and 1 deletions

View File

@ -519,7 +519,10 @@ public:
};
/// RecordDecl - Represents a struct/union/class.
/// RecordDecl - Represents a struct/union/class. For example:
/// struct X; // Forward declaration, no "body".
/// union Y { int A, B; }; // Has body with members A and B (FieldDecls).
///
class RecordDecl : public TagDecl {
/// HasFlexibleArrayMember - This is true if this struct ends with a flexible
/// array member (e.g. int X[]) or if this union contains a struct that does.