-
Notifications
You must be signed in to change notification settings - Fork 668
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[trie] Remove TrieNode::Empty to align it better with RawTrieNode (#1…
…2394) Step 1 of removing TrieNode Part of #12361 The main difference between TrieNode and RawTrieNode was that TrieNode had an enum value TrieNode::Empty while RawTrieNode did not. This PR removes all occurrences of TrieNode::Empty and replaces them with `Option::None` for TrieNode. In the next PR, we can change all occurrences of TrieNode to RawTrieNode
- Loading branch information
1 parent
5581f65
commit b810c4c
Showing
3 changed files
with
45 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters