Skip to content

Commit

Permalink
removed unused field
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMula committed Jan 16, 2017
1 parent 64ce873 commit 1e55fad
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion trienode.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ trienode_new(const TRIE_LETTER_TYPE letter, const char eow) {
node->n = 0;
node->letter = letter;
node->eow = eow;
node->pickle = 0;
node->next = NULL;
}

Expand Down
1 change: 0 additions & 1 deletion trienode.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ typedef struct TrieNode {
uint32_t n; ///< length of next
#endif
uint8_t eow:1; ///< end of word marker
uint8_t pickle:7; ///< used by pickling mechanism to indicate when fail point to temporary lookup field (for detail see Automaton_pickle.c)
TRIE_LETTER_TYPE letter; ///< incoming edge label

struct TrieNode** next; ///< table of pointers
Expand Down

0 comments on commit 1e55fad

Please sign in to comment.