Skip to content

Commit

Permalink
Fix wrong order of arguments in function call
Browse files Browse the repository at this point in the history
  • Loading branch information
robbr48 committed Oct 28, 2024
1 parent b0cfb75 commit a40606f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HopsanCore/src/Parameters.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ bool ParameterEvaluatorHandler::setParameter(const HString &rName, const HString
//! @return true if success, otherwise false
bool ParameterEvaluatorHandler::setParameterValue(const HString &rName, const HString &rValue, bool force)
{
return setParameter(rName, rValue, "", "", "", "", force);
return setParameter(rName, rValue, "", "", "", "", false, force);
}


Expand Down

0 comments on commit a40606f

Please sign in to comment.