mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-04-05 03:29:46 +08:00
minor fix to code style
This commit is contained in:
@@ -93,7 +93,7 @@ class Trie {
|
||||
|
||||
public:
|
||||
// constructor to initialise the root of the trie.
|
||||
Trie() : m_root(std::make_shared<TrieNode>()){};
|
||||
Trie() : m_root(std::make_shared<TrieNode>()) {}
|
||||
|
||||
/**
|
||||
* Insert a word into the trie.
|
||||
|
||||
Reference in New Issue
Block a user