Skip to content

Commit

Permalink
Changing getArray to take series by value
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenCzarnecki committed Jan 14, 2025
1 parent e31563a commit 01a3b9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Common/src/Series.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ namespace FenestrationCommon
namespace Helper
{
template<typename Func>
std::vector<double> getArray(const CSeries & series, Func && extractor)
std::vector<double> getArray(CSeries series, Func && extractor)
{
std::vector<double> aArray(series.size());
std::transform(
Expand Down

0 comments on commit 01a3b9b

Please sign in to comment.