| 55 | } |
| 56 | |
| 57 | TString TypeName(const std::type_info& typeInfo) { |
| 58 | return TypeNameImpl(typeInfo.name()); // NOLINT(arcadia-typeid-name-restriction) |
| 59 | } |
| 60 | |
| 61 | TString TypeName(const std::type_index& typeIndex) { |
| 62 | return TypeNameImpl(typeIndex.name()); |
nothing calls this directly
no test coverage detected