| 1875 | namespace path_traits |
| 1876 | { |
| 1877 | void dispatch(const directory_entry & de, |
| 1878 | # ifdef BOOST_WINDOWS_API |
| 1879 | std::wstring& to, |
| 1880 | # else |
| 1881 | std::string& to, |
| 1882 | # endif |
| 1883 | const codecvt_type &) |
| 1884 | { |
| 1885 | to = de.path().native(); |
| 1886 | } |
| 1887 | |
| 1888 | } // namespace path_traits |
| 1889 | } // namespace filesystem |
nothing calls this directly
no outgoing calls
no test coverage detected