Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix #2380 develop override #2382

Merged
merged 1 commit into from
Jan 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/libcode/vx_seeps/seeps.h
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class SeepsClimo : public SeepsClimoBase {
SeepsClimo();
~SeepsClimo();

void clear() override;
void clear();
SeepsRecord *get_record(int sid, int month, int hour);
double get_score(int sid, double p_fcst, double p_obs, int month, int hour);
SeepsScore *get_seeps_score(int sid, double p_fcst, double p_obs, int month, int hour);
Expand Down Expand Up @@ -221,7 +221,7 @@ class SeepsClimoGrid : public SeepsClimoBase {
SeepsClimoGrid(int month, int hour);
~SeepsClimoGrid();

void clear() override;
void clear();
SeepsScore *get_record(int ix, int iy, double p_fcst, double p_obs);
double get_score(int offset, int obs_cat, int fcst_cat);
double get_score(int ix, int iy, double p_fcst, double p_obs);
Expand Down