Skip to content

Commit

Permalink
Per #2339, rename SeepsAggScore::init() to SeepsAggScore::clear().
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnHalleyGotway committed Nov 10, 2022
1 parent 4f2a5fb commit 7149c7d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libcode/vx_seeps/seeps.cc
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ void SeepsClimo::read_records(ConcatString filename) {
////////////////////////////////////////////////////////////////////////


void SeepsAggScore::init() {
void SeepsAggScore::clear() {

n_obs = 0;
c12 = c13 = c21 = c23 = c31 = c32 = 0;
Expand Down
3 changes: 2 additions & 1 deletion src/libcode/vx_seeps/seeps.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ struct SeepsScore { // For SEEPS_MPR
////////////////////////////////////////////////////////////////////////

struct SeepsAggScore { // For SEEPS
void init();

void clear();

int n_obs;
int c12;
Expand Down

0 comments on commit 7149c7d

Please sign in to comment.