Skip to content
Snippets Groups Projects

Reverse the order in which IoComponentMgr io_finalizes components

1 unresolved thread

It's necessary to reverse the order, so components that depend on other components are finalized first, when the other ones are still active

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
457 457 }
458 458
459 459 bool allgood = true;
460 for ( IoStack_t::iterator io = m_iostack.begin(), ioEnd = m_iostack.end();
461 io != ioEnd;
462 ++io ) {
460 // reverse iteration to unwind component dependencies
461 for( IoStack_t::iterator io = m_iostack.end(); io-- != m_iostack.begin(); ) {
  • closed

  • Please register or sign in to reply
    Loading