forked from OSchip/llvm-project
parent
db37c8391c
commit
1c14d71010
|
@ -424,6 +424,11 @@ public:
|
|||
setDefinition(true);
|
||||
}
|
||||
|
||||
/// getEnumConstantList - Return the first EnumConstantDecl in the enum.
|
||||
///
|
||||
EnumConstantDecl *getEnumConstantList() { return ElementList; }
|
||||
const EnumConstantDecl *getEnumConstantList() const { return ElementList; }
|
||||
|
||||
static bool classof(const Decl *D) {
|
||||
return D->getKind() == Enum;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue