summaryrefslogtreecommitdiffstats
path: root/src/storage
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2016-03-30 14:17:33 +0800
committerPeng Wu <alexepico@gmail.com>2016-03-30 14:31:55 +0800
commit9217eb5d25faa0bed91c9344fc28ac5b6d57c0ee (patch)
tree13c44dbc6b2fe1b7a7adc0a17135501816745a4c /src/storage
parent8cd9960d54d50ebb18e6f1b5aedd6e40391be879 (diff)
downloadlibpinyin-9217eb5d25faa0bed91c9344fc28ac5b6d57c0ee.tar.gz
libpinyin-9217eb5d25faa0bed91c9344fc28ac5b6d57c0ee.tar.xz
libpinyin-9217eb5d25faa0bed91c9344fc28ac5b6d57c0ee.zip
switch to phrase large table 3
Diffstat (limited to 'src/storage')
-rw-r--r--src/storage/tag_utility.cpp4
-rw-r--r--src/storage/tag_utility.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/storage/tag_utility.cpp b/src/storage/tag_utility.cpp
index 081e931..232a07d 100644
--- a/src/storage/tag_utility.cpp
+++ b/src/storage/tag_utility.cpp
@@ -4,7 +4,7 @@
#include <assert.h>
#include "novel_types.h"
#include "phrase_index.h"
-#include "phrase_large_table2.h"
+#include "phrase_large_table3.h"
#include "tag_utility.h"
namespace pinyin{
@@ -332,7 +332,7 @@ static phrase_token_t taglib_special_string_to_token(const char * string){
return 0;
}
-phrase_token_t taglib_string_to_token(PhraseLargeTable2 * phrase_table,
+phrase_token_t taglib_string_to_token(PhraseLargeTable3 * phrase_table,
FacadePhraseIndex * phrase_index,
const char * string){
phrase_token_t token = null_token;
diff --git a/src/storage/tag_utility.h b/src/storage/tag_utility.h
index ceb1d6c..1dd90b8 100644
--- a/src/storage/tag_utility.h
+++ b/src/storage/tag_utility.h
@@ -111,7 +111,7 @@ bool taglib_pop_state();
*/
bool taglib_fini();
-class PhraseLargeTable2;
+
class FacadePhraseIndex;