| 142 | |
| 143 | #if defined CLI11_HAS_FILESYSTEM && CLI11_HAS_FILESYSTEM > 0 |
| 144 | CLI11_INLINE std::filesystem::path to_path(std::string_view str) { |
| 145 | return std::filesystem::path{ |
| 146 | #ifdef _WIN32 |
| 147 | widen(str) |
| 148 | #else |
| 149 | str |
| 150 | #endif // _WIN32 |
| 151 | }; |
| 152 | } |
| 153 | #endif // CLI11_HAS_FILESYSTEM |
| 154 |
nothing calls this directly
no outgoing calls
no test coverage detected