| 126 | } // namespace detail |
| 127 | |
| 128 | CLI11_INLINE std::string narrow(const wchar_t *str, std::size_t str_size) { return detail::narrow_impl(str, str_size); } |
| 129 | CLI11_INLINE std::string narrow(const std::wstring &str) { return detail::narrow_impl(str.data(), str.size()); } |
| 130 | // Flawfinder: ignore |
| 131 | CLI11_INLINE std::string narrow(const wchar_t *str) { return detail::narrow_impl(str, std::wcslen(str)); } |
nothing calls this directly
no outgoing calls
no test coverage detected