| 890 | std::string const& string(codecvt_type const&) const { return m_pathname; } |
| 891 | |
| 892 | std::wstring wstring() const |
| 893 | { |
| 894 | std::wstring tmp; |
| 895 | if (!m_pathname.empty()) |
| 896 | detail::path_traits::convert(m_pathname.data(), m_pathname.data() + m_pathname.size(), tmp); |
| 897 | return tmp; |
| 898 | } |
| 899 | std::wstring wstring(codecvt_type const& cvt) const |
| 900 | { |
| 901 | std::wstring tmp; |