summaryrefslogtreecommitdiffstats
path: root/src/storage
diff options
context:
space:
mode:
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;