| 38 | }; |
| 39 | |
| 40 | struct EnumDecl { |
| 41 | std::string name; |
| 42 | std::string underlying; |
| 43 | std::vector<EnumMember> members; |
| 44 | int line = 0; |
| 45 | }; |
| 46 | |
| 47 | struct StructDecl { |
| 48 | std::string name; |
nothing calls this directly
no outgoing calls
no test coverage detected