| 281 | //----------------------------------------------------------------------------- |
| 282 | |
| 283 | static std::string GetAnonymStructOrUnionName(const CXXRecordDecl& cxxRecordDecl) |
| 284 | { |
| 285 | static constexpr auto prefix{"__anon_"sv}; |
| 286 | return MakeLineColumnName(cxxRecordDecl, prefix); |
| 287 | } |
| 288 | //----------------------------------------------------------------------------- |
| 289 | |
| 290 | std::string BuildRetTypeName(const Decl& decl) |
no test coverage detected