utils: split: Rename all splitBy*() variants to split()
This commit is contained in:
@@ -86,7 +86,7 @@ std::string Parser::processLink(const PageDao &pageDao, UrlProvider &urlProvider
|
||||
std::string linktag = match.str(1);
|
||||
std::string inside = match.str(2);
|
||||
|
||||
std::vector<std::string> splitted = utils::splitByChar(inside, '|');
|
||||
std::vector<std::string> splitted = utils::split(inside, '|');
|
||||
HtmlLink htmllink;
|
||||
if(splitted.size() == 2)
|
||||
{
|
||||
|
Reference in New Issue
Block a user