| 274 | //----------------------------------------------------------------------------- |
| 275 | |
| 276 | std::string GetLambdaName(const CXXRecordDecl& lambda) |
| 277 | { |
| 278 | static constexpr auto lambdaPrefix{"__lambda_"sv}; |
| 279 | return MakeLineColumnName(lambda, lambdaPrefix); |
| 280 | } |
| 281 | //----------------------------------------------------------------------------- |
| 282 | |
| 283 | static std::string GetAnonymStructOrUnionName(const CXXRecordDecl& cxxRecordDecl) |
no test coverage detected