Browse Source

fs_path.hpp

getattr-cache
Antonio SJ Musumeci 9 months ago
parent
commit
94b96cf623
  1. 9
      src/fs_path.hpp

9
src/fs_path.hpp

@ -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_);
}
}
};
Loading…
Cancel
Save