mirror of
https://github.com/BotChain-Robots/firmware.git
synced 2026-07-08 17:47:21 +02:00
Fix compile issue in MessagingInterface
This commit is contained in:
@@ -15,7 +15,7 @@ MessagingInterface::~MessagingInterface() {
|
||||
vQueueDelete(m_mpi_rx_queue);
|
||||
vSemaphoreDelete(m_map_semaphore);
|
||||
|
||||
for (const auto queue: m_tag_to_queue | std::views::values) {
|
||||
for (const auto [_tag, queue] : m_tag_to_queue) {
|
||||
vQueueDelete(queue);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user