Remove a superfluous inline

This commit is contained in:
Jeremy Rifkin 2025-01-28 00:50:42 -06:00
parent f16c36e0b6
commit 25eaa832d1
No known key found for this signature in database
GPG Key ID: 19AA8270105E8EB4

View File

@ -36,7 +36,7 @@ namespace detail {
}
template<typename C>
inline std::string join(const C& container, const std::string& delim) {
std::string join(const C& container, const std::string& delim) {
auto iter = std::begin(container);
auto end = std::end(container);
std::string str;