In the C-API SilKit_ParticipantConfigurationFromFile implementation for _WIN32 platforms we use a non-standard overload of the std::ifstream constructor which takes a std::wstring (to allow unicode symbols in the path). This PR switches to the overload taking a const wchar_t * which is provided on MSVC as well as MinGW.
Instructions for review / testing
Developer checklist (address before review)
[ ] Changelog.md updated
[ ] Prepared update for depending repositories
[ ] Documentation updated (public API changes only)
[ ] API docstrings updated (public API changes only)
Subject
In the C-API
SilKit_ParticipantConfigurationFromFile
implementation for_WIN32
platforms we use a non-standard overload of thestd::ifstream
constructor which takes astd::wstring
(to allow unicode symbols in the path). This PR switches to the overload taking aconst wchar_t *
which is provided on MSVC as well as MinGW.Instructions for review / testing
Developer checklist (address before review)