From 94b96cf6235ab9b4d9c8358dcf0aaaae953c4b42 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Wed, 21 Feb 2024 20:18:11 -0600 Subject: [PATCH] fs_path.hpp --- src/fs_path.hpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/fs_path.hpp b/src/fs_path.hpp index bbe131fb..a291a171 100644 --- a/src/fs_path.hpp +++ b/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_); + } } };