Skip to content

Commit

Permalink
Changed comparison to assignment.
Browse files Browse the repository at this point in the history
  • Loading branch information
shoops committed Aug 5, 2021
1 parent ac13c0c commit d3895c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion copasi/function/CEvaluationNodeObject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ bool CEvaluationNodeObject::mapObject(const std::string srcCN, const CDataContai
if (mRegisteredObjectCN.compare(0, Length, srcCN) != 0)
return true;

mpValue == NULL;
mpValue = NULL;
mpObject = pTarget->getObject(mRegisteredObjectCN.substr(Length + 1));

const CDataObject * pDataObject = CObjectInterface::DataObject(mpObject);
Expand Down

0 comments on commit d3895c3

Please sign in to comment.