From 6a461663903874ffa6c18952ee3e99d1f37166c5 Mon Sep 17 00:00:00 2001 From: Stefano Avallone Date: Mon, 7 Apr 2025 09:46:06 +0200 Subject: [PATCH] wifi: Avoid ambiguity about the type of a set elements --- src/wifi/model/wifi-mac-queue-scheduler-impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wifi/model/wifi-mac-queue-scheduler-impl.h b/src/wifi/model/wifi-mac-queue-scheduler-impl.h index d9c3d5b93..5d3fb1fd1 100644 --- a/src/wifi/model/wifi-mac-queue-scheduler-impl.h +++ b/src/wifi/model/wifi-mac-queue-scheduler-impl.h @@ -632,7 +632,7 @@ WifiMacQueueSchedulerImpl::BlockAllQueues(WifiQueueBlockedRea } else { - m_blockAllInfo[reason].merge(std::set{linkIds}); + m_blockAllInfo[reason].merge(std::set{linkIds}); } }