summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/storage/phrase_large_table2.h5
1 files changed, 1 insertions, 4 deletions
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. */