From 60265e9a6bcc58bcaec8dc07611f2c30371c2165 Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Fri, 19 Oct 2012 16:11:47 +0800 Subject: refine reduce_tokens --- src/storage/phrase_large_table2.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src') diff --git a/src/storage/phrase_large_table2.h b/src/storage/phrase_large_table2.h index 03dc185..6a73851 100644 --- a/src/storage/phrase_large_table2.h +++ b/src/storage/phrase_large_table2.h @@ -121,10 +121,7 @@ static inline int reduce_tokens(PhraseTokens tokens, num += array->len; - for (size_t j = 0; j < array->len; ++j) { - phrase_token_t token = g_array_index(array, phrase_token_t, j); - g_array_append_val(tokenarray, token); - } + g_array_append_vals(tokenarray, array->data, array->len); } /* the following line will be removed in future after code are verified. */ -- cgit