Skip to content

Commit

Permalink
init _an counters with 0
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickbr committed Jan 18, 2025
1 parent 3ad6215 commit 7df97c4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/shapevl/Collector.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,14 @@ class Collector {
size_t _unmatchedSegSum;
double _unmatchedSegLengthSum;

size_t _an0;
size_t _an5;
size_t _an10;
size_t _an20;
size_t _an30;
size_t _an50;
size_t _an70;
size_t _an90;
size_t _an0 = 0;
size_t _an5 = 0;
size_t _an10 = 0;
size_t _an20 = 0;
size_t _an30 = 0;
size_t _an50 = 0;
size_t _an70 = 0;
size_t _an90 = 0;

std::ostream* _reportOut;

Expand Down

0 comments on commit 7df97c4

Please sign in to comment.