| 1614 | //----------------------------------------------------------------------------- |
| 1615 | |
| 1616 | std::string GetElaboratedTypeKeyword(const ElaboratedTypeKeyword keyword) |
| 1617 | { |
| 1618 | std::string ret{TypeWithKeyword::getKeywordName(keyword)}; |
| 1619 | |
| 1620 | if(not ret.empty()) { |
| 1621 | ret += ' '; |
| 1622 | } |
| 1623 | |
| 1624 | return ret; |
| 1625 | } |
| 1626 | //----------------------------------------------------------------------------- |
| 1627 | |
| 1628 | uint64_t GetSize(const ConstantArrayType* arrayType) |
no test coverage detected