We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 325d622 commit 5a7efc2Copy full SHA for 5a7efc2
src/filesystem.cpp
@@ -26,7 +26,7 @@ ZepFileSystemCPP::ZepFileSystemCPP(const ZepPath& configPath)
26
// Use the config path
27
m_configPath = configPath;
28
29
- m_workingDirectory = ZepPath(cpp_fs::current_path().string());
+ m_workingDirectory = ZepPath(reinterpret_cast<const char*>(cpp_fs::current_path().u8string().c_str()));
30
31
// Didn't find the config path, try the working directory
32
if (!Exists(m_configPath))
0 commit comments