summaryrefslogtreecommitdiff
path: root/string/ahoCorasick.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'string/ahoCorasick.cpp')
-rw-r--r--string/ahoCorasick.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/string/ahoCorasick.cpp b/string/ahoCorasick.cpp
index 41bd788..c83f9c3 100644
--- a/string/ahoCorasick.cpp
+++ b/string/ahoCorasick.cpp
@@ -51,4 +51,4 @@ struct AhoCorasick {
if (aho[v].nxt[idx] != -1) return aho[v].nxt[idx];
else return v == 0 ? 0 : go(getSuffix(v), idx);
}
-}; \ No newline at end of file
+};