Skip to content

Commit

Permalink
Remove extra qualification on size() function causing platforms other…
Browse files Browse the repository at this point in the history
… than Windows to fail

Note - no error message in Github Actions log....
  • Loading branch information
sjanzou committed May 25, 2023
1 parent 255a327 commit 6ed193e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ssc/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class adjustment_factors
adjustment_factors(compute_module *cm, const std::string &prefix);
bool setup(int nsteps=8760, int analysis_period=1);
ssc_number_t operator()(size_t time);
size_t adjustment_factors::size();
size_t size();
std::string error() { return m_error; }
};

Expand Down

0 comments on commit 6ed193e

Please sign in to comment.