From fe2ab99c52f22f63bec358ff9319f481f98dfe04 Mon Sep 17 00:00:00 2001 From: Mathieu Lacage Date: Thu, 18 Oct 2007 11:25:33 +0200 Subject: [PATCH] remove buggy asserts --- src/devices/wifi/arf-mac-stations.cc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/devices/wifi/arf-mac-stations.cc b/src/devices/wifi/arf-mac-stations.cc index 85b83a6a5..9933758d5 100644 --- a/src/devices/wifi/arf-mac-stations.cc +++ b/src/devices/wifi/arf-mac-stations.cc @@ -138,12 +138,9 @@ void ArfMacStation::ReportRxOk (double rxSnr, WifiMode txMode) {} void ArfMacStation::ReportRtsOk (double ctsSnr, WifiMode ctsMode, double rtsSnr) -{ - NS_ASSERT (rtsSnr == 0); -} +{} void ArfMacStation::ReportDataOk (double ackSnr, WifiMode ackMode, double dataSnr) { - NS_ASSERT (dataSnr == 0); m_timer++; m_success++; m_failed = 0;