From 517f71a2dd8c214a31495761ff0b5dd548838e16 Mon Sep 17 00:00:00 2001 From: Anmol3299 Date: Sat, 30 May 2020 01:57:16 +0530 Subject: [PATCH] minor fix to code style --- data_structure/trie_modern.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data_structure/trie_modern.cpp b/data_structure/trie_modern.cpp index 0214969f0..098ba1bb9 100644 --- a/data_structure/trie_modern.cpp +++ b/data_structure/trie_modern.cpp @@ -93,7 +93,7 @@ class Trie { public: // constructor to initialise the root of the trie. - Trie() : m_root(std::make_shared()){}; + Trie() : m_root(std::make_shared()) {} /** * Insert a word into the trie.