| 11 | namespace Valdi { |
| 12 | |
| 13 | std::string getTraceName(std::string_view prefix, const StringBox& suffix) { |
| 14 | return getTraceName(prefix, suffix.toStringView()); |
| 15 | } |
| 16 | |
| 17 | std::string getTraceName(std::string_view prefix, std::string_view suffix) { |
| 18 | std::string out; |
nothing calls this directly
no test coverage detected