From 6ed193e16996ed35514e6e783675125e8b91b617 Mon Sep 17 00:00:00 2001 From: Steven Janzou Date: Thu, 25 May 2023 02:21:59 -0600 Subject: [PATCH] Remove extra qualification on size() function causing platforms other than Windows to fail Note - no error message in Github Actions log.... --- ssc/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssc/common.h b/ssc/common.h index 3b62ff7c2..92a166cbe 100644 --- a/ssc/common.h +++ b/ssc/common.h @@ -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; } };