Skip to content

path: convert to std::string explicitly

Ben Boeckel requested to merge ben.boeckel/smtk:fix-windows-path into master

On Windows, boost::filesystem::path is backed by a std::wstring, so .c_str() returns a wchar_t* which is not convertible to a std::string.

Merge request reports