Skip to content

Commit af64968

Browse files
author
Jeffery Hsu
committed
experimenting2
1 parent cc065a1 commit af64968

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

irobot_events_executor/src/rclcpp/executors/events_executor/events_executor_entities_collector.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -390,9 +390,9 @@ EventsExecutorEntitiesCollector::create_entity_callback(
390390
void * exec_entity_id, ExecutorEventType event_type)
391391
{
392392
std::function<void(size_t)> callback = [this, exec_entity_id, event_type](size_t num_events) {
393-
assert(this !=nullptr)
393+
assert(this !=nullptr);
394394
ExecutorEvent event = {exec_entity_id, -1, event_type, num_events};
395-
associated_executor_->events_queue_->enqueue(event);
395+
associated_executor_->events_queue_->enqueue(event);
396396
};
397397
return callback;
398398
}

0 commit comments

Comments
 (0)