diff options
author | Peter Powell <petpow@saberuk.com> | 2018-07-26 21:23:45 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2018-07-26 21:41:36 +0100 |
commit | 9cf448a332799a138dad0acb5b2878535770571d (patch) | |
tree | 4d922164f102e1dbf98aa3261e77da305664f532 /src/hashcomp.cpp | |
parent | 384ef31bc01e4a1a2e59d082c9066002410ba54a (diff) |
Replace irc::stringjoiner with a generic stdalgo::string::join.
This can also be used with different types of collection containing
values which are not a string.
Diffstat (limited to 'src/hashcomp.cpp')
-rw-r--r-- | src/hashcomp.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/hashcomp.cpp b/src/hashcomp.cpp index 08ce154e8..2288a227e 100644 --- a/src/hashcomp.cpp +++ b/src/hashcomp.cpp @@ -279,18 +279,6 @@ bool irc::sepstream::StreamEnd() return this->pos > this->tokens.length(); } -std::string irc::stringjoiner(const std::vector<std::string>& sequence, char separator) -{ - std::string joined; - if (sequence.empty()) - return joined; // nothing to do here - - for (std::vector<std::string>::const_iterator i = sequence.begin(); i != sequence.end(); ++i) - joined.append(*i).push_back(separator); - joined.erase(joined.end()-1); - return joined; -} - irc::portparser::portparser(const std::string &source, bool allow_overlapped) : sep(source), in_range(0), range_begin(0), range_end(0), overlapped(allow_overlapped) { |