Fixed error

This commit is contained in:
Alexey Milovidov 2020-03-20 02:51:00 +03:00
parent a5e3d4efb7
commit f90f53c986

View File

@ -304,7 +304,7 @@ inline void splitInto(To & to, const std::string & what, bool token_compress = f
const char * end = pos + what.size();
while (pos < end)
{
const char * delimiter_or_end = find_first_symbols<','>(pos, end);
const char * delimiter_or_end = find_first_symbols<symbols...>(pos, end);
if (!token_compress || pos + 1 < delimiter_or_end)
to.emplace_back(pos, delimiter_or_end);