Skip to content

Commit

Permalink
Don't initialize non-static class members.
Browse files Browse the repository at this point in the history
  • Loading branch information
brianwalenz committed Jul 30, 2018
1 parent 27adf7a commit 3fedc07
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/utility/sequence.H
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ public:
uint64 length(void) { return(_seqLen); };

private:
uint32 _nameMax = 0;
char *_name = NULL;
uint64 _seqMax = 0;
char *_seq = NULL;
uint8 *_qlt = NULL;
uint64 _seqLen = 0;
uint32 _nameMax;
char *_name;
uint64 _seqMax;
char *_seq;
uint8 *_qlt;
uint64 _seqLen;

friend class dnaSeqFile;
};
Expand Down

0 comments on commit 3fedc07

Please sign in to comment.