Skip to content

Commit dfa07d8

Browse files
author
D. A. Pellegrino
committed
#236 Also removed assignment of unused count in constructors.
1 parent b68f5c7 commit dfa07d8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

libhdt/src/libdcs/CSD_PFC.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ class PFCSuggestionIterator: public hdt::IteratorUCharString {
201201
public:
202202

203203
PFCSuggestionIterator(CSD_PFC *pfc, const char *prefix) :
204-
pfc(pfc), count(1), prefix(prefix) {
204+
pfc(pfc), prefix(prefix) {
205205
max = pfc->getLength();
206206
prefixlen = strlen(prefix);
207207
hasnext = false;
@@ -337,7 +337,7 @@ class PFCSuggestionIDIterator: public hdt::IteratorUInt {
337337
public:
338338

339339
PFCSuggestionIDIterator(CSD_PFC *pfc, const char *prefix) :
340-
pfc(pfc), count(1), prefix(prefix) {
340+
pfc(pfc), prefix(prefix) {
341341
max = pfc->getLength();
342342
prefixlen = strlen(prefix);
343343
hasnext = false;

0 commit comments

Comments
 (0)