Skip to content

Commit

Permalink
Initialize abacus_indices in default constructor.
Browse files Browse the repository at this point in the history
  • Loading branch information
brianwalenz committed Nov 22, 2016
1 parent 8ae92b9 commit 9479d3d
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/utgcns/libcns/abAbacus-refine.C
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,15 @@ enum ShiftStatus {
class abAbacusWork {
public:
abAbacusWork() {
start_column = NULL;
end_column = NULL;
rows = 0;
columns = 0;
window_width = 0;
shift = UNSHIFTED;
beads = NULL;
calls = NULL;
abacus_indices = NULL;
start_column = NULL;
end_column = NULL;
rows = 0;
columns = 0;
window_width = 0;
shift = UNSHIFTED;
beads = NULL;
calls = NULL;
};

abAbacusWork(abAbacus *abacus,
Expand Down

0 comments on commit 9479d3d

Please sign in to comment.