diff options
Diffstat (limited to 'content/string/suffixAutomaton.cpp')
| -rw-r--r-- | content/string/suffixAutomaton.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/string/suffixAutomaton.cpp b/content/string/suffixAutomaton.cpp index 9a68cb3..d81a05d 100644 --- a/content/string/suffixAutomaton.cpp +++ b/content/string/suffixAutomaton.cpp @@ -4,7 +4,7 @@ struct SuffixAutomaton { struct State { int len, link = -1; array<int, ALPHABET_SIZE> nxt; // map if large Alphabet - State(int l) : len(l) {fill(all(nxt), -1);} + State(int l): len(l) { fill(all(nxt), -1); } }; vector<State> st = {State(0)}; |
