From a665bff1bd0681be330f50de40030312d05775e8 Mon Sep 17 00:00:00 2001 From: Andrei Preda Date: Sat, 19 Aug 2017 16:38:49 +0300 Subject: [PATCH] Make split inline --- subprocess.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprocess.hpp b/subprocess.hpp index d3840a5..7efe047 100755 --- a/subprocess.hpp +++ b/subprocess.hpp @@ -146,7 +146,7 @@ namespace util * to be split. Default constructed to ' '(space) and '\t'(tab) * [out] vector : Vector of strings split at deleimiter. */ - static std::vector + static inline std::vector split(const std::string& str, const std::string& delims=" \t") { std::vector res;