From e55df069a8f83b2c0c2b56c035f49e89516cdaaa Mon Sep 17 00:00:00 2001 From: Gloria Mundi Date: Sat, 16 Nov 2024 17:48:10 +0100 Subject: minor fixes, let code breathe where possible --- content/string/suffixAutomaton.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/string/suffixAutomaton.cpp') 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 nxt; // map if large Alphabet - State(int l) : len(l) {fill(all(nxt), -1);} + State(int l): len(l) { fill(all(nxt), -1); } }; vector st = {State(0)}; -- cgit v1.2.3