+ remove useless comment

This commit is contained in:
kelson42 2011-12-22 11:25:59 +00:00
parent 72e62fab6b
commit fb1d0893e3
1 changed files with 0 additions and 13 deletions

View File

@ -63,18 +63,5 @@ void appendToFirstOccurence(std::string &content, const std::string regex, cons
UErrorCode status = U_ZERO_ERROR;
content.insert(matcher->start(status), replacement);
}
/*
regmatch_t matchs[1];
regex_t regexp;
regcomp(&regexp, regex.data(), REG_ICASE);
if (!regexec(&regexp, content.data(), 1, matchs, 0)) {
if (matchs[0].rm_so > 0)
content.insert(matchs[0].rm_eo, replacement);
}
regfree(&regexp);
*/
}