Skip to content
Snippets Groups Projects
Commit dfbc91a1 authored by Brandon Hewer's avatar Brandon Hewer
Browse files

Capture environment in lambda

Refs #22275
parent 3e8f02f2
No related branches found
No related tags found
No related merge requests found
...@@ -531,14 +531,14 @@ std::vector<std::string> QENSFitSequential::getFitParameterNames() const { ...@@ -531,14 +531,14 @@ std::vector<std::string> QENSFitSequential::getFitParameterNames() const {
std::copy_if( std::copy_if(
uniqueParameters.begin(), uniqueParameters.end(), uniqueParameters.begin(), uniqueParameters.end(),
std::back_inserter(parameters), std::back_inserter(parameters),
[](const std::string &parameter) { return isFitParameter(parameter); }); [&](const std::string &parameter) { return isFitParameter(parameter); });
return parameters; return parameters;
} }
std::set<std::string> QENSFitSequential::getUniqueParameterNames() const { std::set<std::string> QENSFitSequential::getUniqueParameterNames() const {
IFunction_sptr function = getProperty("Function"); IFunction_sptr function = getProperty("Function");
std::set<std::string> nameSet; std::set<std::string> nameSet;
for (auto i = 0u; i < functions->nParams(); ++i) for (auto i = 0u; i < function->nParams(); ++i)
nameSet.insert(shortParameterName(function->parameterName(i))); nameSet.insert(shortParameterName(function->parameterName(i)));
return nameSet; return nameSet;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment