| 545 | /* UnionCase */ |
| 546 | |
| 547 | bool UnionCase::caseMemberIsVoid() const |
| 548 | { |
| 549 | if (1 == m_memberDeclarationNames.size() && "void" == m_memberDeclarationNames[0]) |
| 550 | { |
| 551 | return true; |
| 552 | } |
| 553 | return false; |
| 554 | } |
| 555 | |
| 556 | string UnionCase::getDescription() const |
| 557 | { |
no test coverage detected