aho_corasick
aho_corasick copied to clipboard
Insert function doesn't work well
https://github.com/cjgdev/aho_corasick/blob/b4fb360ef2764bf0cd22daaa62dd4bfd18b8ad0c/src/aho_corasick/aho_corasick.hpp#L463
I've found you got an error when adding items using iterators
it should be:
for (InputIterator it = first; it != last; ++it) {
I came here to say the same thing :)