mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-12 09:41:03 +00:00
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.