summaryrefslogtreecommitdiffstats
path: root/src/storage/tag_utility.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/storage/tag_utility.h')
-rw-r--r--src/storage/tag_utility.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/storage/tag_utility.h b/src/storage/tag_utility.h
index 38acb68..a68877d 100644
--- a/src/storage/tag_utility.h
+++ b/src/storage/tag_utility.h
@@ -117,14 +117,16 @@ class FacadePhraseIndex;
/**
* taglib_string_to_token:
- * @phrases: the phrase table for token lookup.
+ * @phrase_table: the phrase table for token lookup.
+ * @phrase_index: the phrase index to prepare PhraseTokens.
* @string: the string of the phrase.
* @returns: the phrase token found in phrase table.
*
* Translate one phrase into the token.
*
*/
-phrase_token_t taglib_string_to_token(PhraseLargeTable * phrases,
+phrase_token_t taglib_string_to_token(PhraseLargeTable2 * phrase_table,
+ FacadePhraseIndex * phrase_index,
const char * string);
/**