| 18 | { |
| 19 | template<> |
| 20 | static std::wstring ToString<winrt::FastCopy::Mode>(winrt::FastCopy::Mode const& mode) |
| 21 | { |
| 22 | switch (mode) |
| 23 | { |
| 24 | case winrt::FastCopy::Mode::Copy: return L"Copy"; |
| 25 | case winrt::FastCopy::Mode::Move: return L"Move"; |
| 26 | default: throw std::exception{}; |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | template<> |
| 31 | static std::wstring ToString<Path::Type>(Path::Type const& type) |
nothing calls this directly
no outgoing calls
no test coverage detected