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/trie.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/string/trie.cpp') diff --git a/content/string/trie.cpp b/content/string/trie.cpp index 03cf947..d5e092c 100644 --- a/content/string/trie.cpp +++ b/content/string/trie.cpp @@ -3,7 +3,7 @@ constexpr int ALPHABET_SIZE = 2; struct node { int words, ends; array nxt; - node() : words(0), ends(0) {fill(all(nxt), -1);} + node(): words(0), ends(0) { fill(all(nxt), -1); } }; vector trie = {node()}; -- cgit v1.2.3