diff options
Diffstat (limited to 'content/string/ahoCorasick.cpp')
| -rw-r--r-- | content/string/ahoCorasick.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/string/ahoCorasick.cpp b/content/string/ahoCorasick.cpp index 390d16d..c65e20a 100644 --- a/content/string/ahoCorasick.cpp +++ b/content/string/ahoCorasick.cpp @@ -4,7 +4,7 @@ struct AhoCorasick { int suffix = 0, ch, cnt = 0; array<int, ALPHABET_SIZE> nxt = {}; - vert(int p, int c) : suffix(-p), ch(c) {fill(all(nxt), -1);} + vert(int p, int c): suffix(-p), ch(c) { fill(all(nxt), -1); } }; vector<vert> aho = {{0, -1}}; |
