File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -188,7 +188,6 @@ class PFCSuggestionIterator: public hdt::IteratorUCharString {
188188private:
189189 CSD_PFC *pfc;
190190 size_t max;
191- size_t count;
192191 const char *prefix;
193192 bool hasnext;
194193 string tmpStr;
@@ -202,7 +201,7 @@ class PFCSuggestionIterator: public hdt::IteratorUCharString {
202201public:
203202
204203 PFCSuggestionIterator (CSD_PFC *pfc, const char *prefix) :
205- pfc (pfc), count( 1 ), prefix(prefix) {
204+ pfc (pfc), prefix(prefix) {
206205 max = pfc->getLength ();
207206 prefixlen = strlen (prefix);
208207 hasnext = false ;
@@ -325,7 +324,6 @@ class PFCSuggestionIDIterator: public hdt::IteratorUInt {
325324private:
326325 CSD_PFC *pfc;
327326 size_t max;
328- size_t count;
329327 const char *prefix;
330328 bool hasnext;
331329 string tmpStr;
@@ -339,7 +337,7 @@ class PFCSuggestionIDIterator: public hdt::IteratorUInt {
339337public:
340338
341339 PFCSuggestionIDIterator (CSD_PFC *pfc, const char *prefix) :
342- pfc (pfc), count( 1 ), prefix(prefix) {
340+ pfc (pfc), prefix(prefix) {
343341 max = pfc->getLength ();
344342 prefixlen = strlen (prefix);
345343 hasnext = false ;
You can’t perform that action at this time.
0 commit comments