removed CreatePath

This commit is contained in:
orignal
2026-08-23 14:58:28 -04:00
parent cf98dca9f6
commit d801e971fb
2 changed files with 0 additions and 10 deletions
-8
View File
@@ -274,14 +274,6 @@ namespace fs {
#endif
}
std::string CreatePath (const std::vector<std::string_view>& subdirs)
{
fs_lib::path ret;
for (const auto& it: subdirs)
ret /= it;
return ret.string ();
}
bool Remove(const std::string & path)
{
if (!fs_lib::exists(path))
-2
View File
@@ -163,8 +163,6 @@ namespace fs {
_ExpandPath(path, other ...);
}
std::string CreatePath (const std::vector<std::string_view>& subdirs);
/**
* @brief Get path relative to datadir
*