- Timestamp:
- Jul 3, 2024, 6:51:28 PM (4 months ago)
- Branches:
- master
- Children:
- 99f7f37
- Parents:
- 39cf5cc
- Location:
- src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Decl.cpp
r39cf5cc rf8f298c 203 203 } 204 204 205 bool EnumDecl::isTyped() const { return base; }205 bool EnumDecl::isTyped() const { return base; } 206 206 207 207 bool EnumDecl::isOpague() const { return isCfa && !isTyped(); } -
src/Validate/ImplementEnumFunc.cpp
r39cf5cc rf8f298c 191 191 192 192 ast::FunctionDecl* EnumAttrFuncGenerator::genValueProto() const { 193 if (decl-> base)193 if (decl->isTyped()) 194 194 return genProto( 195 195 "value",
Note: See TracChangeset
for help on using the changeset viewer.