From 25eaa832d1e3d1ad22d7a5253d44e51a0dd9b5ad Mon Sep 17 00:00:00 2001 From: Jeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com> Date: Tue, 28 Jan 2025 00:50:42 -0600 Subject: [PATCH] Remove a superfluous inline --- src/utils/utils.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/utils.hpp b/src/utils/utils.hpp index e074b5b..f4af8f3 100644 --- a/src/utils/utils.hpp +++ b/src/utils/utils.hpp @@ -36,7 +36,7 @@ namespace detail { } template - 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;