fs_path.hpp

This commit is contained in:
Antonio SJ Musumeci 2024-02-21 20:18:11 -06:00
parent c4d25b2a2c
commit 94b96cf623

View File

@ -85,5 +85,14 @@ namespace fs
{
return (base_ + suffix_);
}
static
inline
std::string
make(const std::string *base_,
const std::string &suffix_)
{
return (*base_ + suffix_);
}
}
};