From 485383c6694aaef79f2f092becda66f38b078012 Mon Sep 17 00:00:00 2001 From: wyy Date: Sun, 9 Mar 2014 20:02:03 -0700 Subject: [PATCH] static const char * -> const char* const --- src/KeywordExtractor.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/KeywordExtractor.hpp b/src/KeywordExtractor.hpp index 0744258..9c68953 100644 --- a/src/KeywordExtractor.hpp +++ b/src/KeywordExtractor.hpp @@ -11,7 +11,7 @@ namespace CppJieba using namespace Limonp; /*utf8*/ - static const char * BLACK_LIST[] = {"我们", "他们"}; + const char * const BLACK_LIST[] = {"我们", "他们"}; class KeywordExtractor: public InitOnOff {