diff options
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/split.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/split.cpp b/src/utils/split.cpp index 82852ee..afe4300 100644 --- a/src/utils/split.cpp +++ b/src/utils/split.cpp @@ -2,7 +2,7 @@ namespace utils { - std::vector<std::string> split(const std::string &s, const char delim, const bool allow_empty) + std::vector<std::string> split(const std::string& s, const char delim, const bool allow_empty) { std::vector<std::string> ret; std::stringstream ss(s); |