mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-07-17 21:17:09 +00:00
6cd2d18d9e
Converting std::wstring to std::string by constructing the latter with wchar_t iterators result in implicit conversion of wchar_t to char which trips Visual Studio 2019 compiler into throwing a warning of potential data loss during conversion. Use conv() helper function to do the conversion and please the compiler at the same time.