From 6fcaad65142620918c2b8cecac2320a03a788035 Mon Sep 17 00:00:00 2001 From: wyy Date: Thu, 6 Mar 2014 23:35:32 -0800 Subject: [PATCH] fix bug in BLACK_LIST definition --- src/KeywordExtractor.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/KeywordExtractor.hpp b/src/KeywordExtractor.hpp index 228df79..0744258 100644 --- a/src/KeywordExtractor.hpp +++ b/src/KeywordExtractor.hpp @@ -11,7 +11,7 @@ namespace CppJieba using namespace Limonp; /*utf8*/ - const char * BLACK_LIST[] = {"我们", "他们"}; + static const char * BLACK_LIST[] = {"我们", "他们"}; class KeywordExtractor: public InitOnOff {