fix compiler warning

This commit is contained in:
yanyiwu 2016-07-23 20:49:27 +08:00
parent 91b7f9af63
commit 53bc279dea

View File

@ -5,8 +5,6 @@
namespace cppjieba { namespace cppjieba {
struct DictTrie;
class SegmentTagged : public SegmentBase{ class SegmentTagged : public SegmentBase{
public: public:
SegmentTagged() { SegmentTagged() {
@ -16,7 +14,7 @@ class SegmentTagged : public SegmentBase{
virtual bool Tag(const string& src, vector<pair<string, string> >& res) const = 0; virtual bool Tag(const string& src, vector<pair<string, string> >& res) const = 0;
virtual const struct DictTrie* GetDictTrie() const = 0; virtual const DictTrie* GetDictTrie() const = 0;
}; // class SegmentTagged }; // class SegmentTagged