Changeset 468:a1bfec1a20ae in finroc_core
- Timestamp:
- 12.02.2020 14:34:04 (13 months ago)
- Branch:
- 14.08
- Children:
- 469:4a5dd2bd8876, 476:bc9f23700bec
- Phase:
- public
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
internal/tFrameworkElementRegister.cpp
r362 r468 204 204 assert(array_chunks[primary_index] && array_chunks[primary_index]->array[secondary_index] && array_chunks[primary_index]->array[secondary_index]->GetHandle() == handle); 205 205 array_chunks[primary_index]->array[secondary_index] = NULL; 206 unused_slot_queue.push(tUnusedSlot(handle));206 (handle >= cFIRST_PORT_HANDLE ? unused_port_slot_queue : unused_slot_queue).push(tUnusedSlot(handle)); 207 207 } 208 208 -
tFrameworkElement.cpp
r416 r468 128 128 } 129 129 130 assert((handle >= internal::tFrameworkElementRegister::cFIRST_PORT_HANDLE) == flags.Get(tFlag::PORT) && "Invalid handle assigned"); 130 131 FINROC_LOG_PRINT(DEBUG_VERBOSE_1, "Constructing tFrameworkElement (" , this, ")"); 131 132 }
Note: See TracChangeset
for help on using the changeset viewer.