summaryrefslogtreecommitdiffstats
path: root/src/storage/phrase_large_table2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/storage/phrase_large_table2.h')
-rw-r--r--src/storage/phrase_large_table2.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/storage/phrase_large_table2.h b/src/storage/phrase_large_table2.h
index cf6807c..bc94eed 100644
--- a/src/storage/phrase_large_table2.h
+++ b/src/storage/phrase_large_table2.h
@@ -117,41 +117,6 @@ public:
};
-static inline int reduce_tokens(const PhraseTokens tokens,
- TokenVector tokenarray) {
- int num = 0;
- g_array_set_size(tokenarray, 0);
-
- for (size_t i = 0; i < PHRASE_INDEX_LIBRARY_COUNT; ++i) {
- GArray * array = tokens[i];
- if (NULL == array)
- continue;
-
- num += array->len;
-
- g_array_append_vals(tokenarray, array->data, array->len);
- }
-
- /* the following line will be removed in future after code are verified. */
- assert(0 <= num && num <= 4);
-
- return num;
-}
-
-/* for compatibility. */
-static inline int get_first_token(const PhraseTokens tokens,
- /* out */ phrase_token_t & token){
- token = null_token;
-
- TokenVector tokenarray = g_array_new(FALSE, FALSE, sizeof(phrase_token_t));
- int num = reduce_tokens(tokens, tokenarray);
- if (num)
- token = g_array_index(tokenarray, phrase_token_t, 0);
- g_array_free(tokenarray, TRUE);
-
- return num;
-}
-
};
#endif