Description how to reproduce the bug
Calling parseSystemModelData("string-literal-filename") is ambiguous since the literal can convert to either a std::string or a std::filesystem::path.
The fix is simply to remove the overload that takes const std::string&. It is redundant since a std::string can also convert automatically to a std::filesystem::path.
GridKit™ version
develop branch at ad86689
System and environment details
This situation would cause an error regardless of environment
Additional information
No response
Description how to reproduce the bug
Calling
parseSystemModelData("string-literal-filename")is ambiguous since the literal can convert to either astd::stringor astd::filesystem::path.The fix is simply to remove the overload that takes
const std::string&. It is redundant since astd::stringcan also convert automatically to astd::filesystem::path.GridKit™ version
develop branch at ad86689
System and environment details
This situation would cause an error regardless of environment
Additional information
No response