Skip to content

Commit

Permalink
Reverting addChild() to original state (needs more thought regarding …
Browse files Browse the repository at this point in the history
…copying)
  • Loading branch information
ryan1248 committed Mar 16, 2016
1 parent 0a7f2a4 commit 59892f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tgcreator/tgStructure.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ void tgStructure::addChild(tgStructure* pChild)
/// structure may build the pairs, while another may not depending on its tags.
if (pChild != NULL)
{
m_children.push_back(*pChild);
m_children.push_back(pChild);
}
}

Expand Down

0 comments on commit 59892f3

Please sign in to comment.