Skip to content

Commit

Permalink
XX
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Ballance <matt.ballance@gmail.com>
  • Loading branch information
mballance committed Sep 4, 2024
1 parent 5c9ab9c commit c84f8e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TaskBuildActivity.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ void TaskBuildActivity::visitActivityActionTypeTraversal(ast::IActivityActionTyp
ast::ISymbolTypeScope *ts = dynamic_cast<ast::ISymbolTypeScope *>(t);
DEBUG("ts.name=%s", ts->getName().c_str());
DEBUG("t=%p id=%s", t, i->getTarget()->getType_id()->getElems().at(0)->getId()->getId().c_str());
for (uint32_t j=0; j<i->getTarget()->getType_id()->getElems().size(); j++) {
for (uint32_t j=1; j<i->getTarget()->getType_id()->getElems().size(); j++) {
DEBUG(" Elem: %s", i->getTarget()->getType_id()->getElems().at(j)->getId()->getId().c_str());
}
vsc::dm::IDataTypeStruct *dt = dynamic_cast<vsc::dm::IDataTypeStruct *>(m_ctxt->getType(t));
Expand Down

0 comments on commit c84f8e9

Please sign in to comment.