from_string.cpp

This commit is contained in:
Antonio SJ Musumeci 2025-04-21 23:39:34 -05:00
parent 9531a36235
commit 59e260f532

View File

@ -128,4 +128,13 @@ namespace str
{
return -EINVAL;
}
int
from(const std::string &value_,
ghc::filesystem::path *path_)
{
*path_ = value_;
return 0;
}
}