Skip to content

Commit

Permalink
Merging Elaine's bug fix [#46624917]
Browse files Browse the repository at this point in the history
  • Loading branch information
axelstudios committed Jul 1, 2013
1 parent 2bdcbdd commit 73e559c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion openstudiocore/src/analysis/DataPoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ namespace detail {
m_problem(other.problem()),
m_variableValues(other.variableValues()),
m_responseValues(other.responseValues()),
m_directory(other.directory())
m_directory(other.directory()),
m_topLevelJob(other.topLevelJob())
{
if (other.osmInputData()) {
m_osmInputData = other.osmInputData().get().clone();
Expand All @@ -102,6 +103,9 @@ namespace detail {
m_tags.push_back(tag.clone());
}
// DLM: TODO should we clone topLevelJob? for now do nothing.
// ETH: Need to clone topLevelJob for save as-ing SimpleProject.
// Am trying just pulling the same runmanager::Job over. When it
// gets to osp, should just keep uuid.
// DLM: TODO should we clone dakotaParametersFiles? for now do nothing.
}

Expand Down

0 comments on commit 73e559c

Please sign in to comment.