| 1602 | //----------------------------------------------------------------------------- |
| 1603 | |
| 1604 | const std::string_view GetConst(const FunctionDecl& decl) |
| 1605 | { |
| 1606 | if(const auto* methodDecl = dyn_cast_or_null<CXXMethodDecl>(&decl)) { |
| 1607 | if(methodDecl->isConst()) { |
| 1608 | return kwSpaceConst; |
| 1609 | } |
| 1610 | } |
| 1611 | |
| 1612 | return {}; |
| 1613 | } |
| 1614 | //----------------------------------------------------------------------------- |
| 1615 | |
| 1616 | std::string GetElaboratedTypeKeyword(const ElaboratedTypeKeyword keyword) |
no outgoing calls
no test coverage detected