| 291 | } |
| 292 | |
| 293 | std::wstring GetFilePath(const std::wstring& strFileName) |
| 294 | { |
| 295 | std::wstring retval; |
| 296 | |
| 297 | if (auto hr = GetOutputFile(strFileName.c_str(), retval); FAILED(hr)) |
| 298 | throw Orc::Exception( |
| 299 | Severity::Fatal, hr, L"Failed to expand output file name (from string {})", strFileName); |
| 300 | return retval; |
| 301 | } |
| 302 | std::string GetFilePath(const std::string& strFileName) |
| 303 | { |
| 304 |
no test coverage detected