| 24 | namespace Valdi { |
| 25 | |
| 26 | static inline std::string_view convertInline(const char* str) { |
| 27 | return std::string_view(str, strlen(str)); |
| 28 | } |
| 29 | |
| 30 | static inline std::string_view convertInline(const std::string& str) { |
| 31 | return std::string_view(str.data(), str.length()); |