| 4492 | static const std::string noname; |
| 4493 | |
| 4494 | struct UnionMember { |
| 4495 | UnionMember() |
| 4496 | : name(noname) |
| 4497 | , size(0) {} |
| 4498 | |
| 4499 | UnionMember(const std::string &name, size_t size) |
| 4500 | : name(name) |
| 4501 | , size(size) {} |
| 4502 | |
| 4503 | const std::string &name; |
| 4504 | size_t size; |
| 4505 | }; |
| 4506 | |
| 4507 | struct Union { |
| 4508 | explicit Union(const Scope &scope) |
no outgoing calls
no test coverage detected