View | Details | Raw Unified | Return to bug 2037
Collapse All | Expand All

(-)a/src/wifi/model/ht-capabilities.cc (-3 / +4 lines)
 Lines 313-321    Link Here 
313
std::ostream &
313
std::ostream &
314
operator << (std::ostream &os, const HtCapabilities &htcapabilities)
314
operator << (std::ostream &os, const HtCapabilities &htcapabilities)
315
{
315
{
316
  os <<  htcapabilities.GetLdpc () << "|" << htcapabilities.GetSupportedChannelWidth ()
316
  os <<  int (htcapabilities.GetLdpc ())
317
  << "|" << htcapabilities.GetGreenfield ()
317
     << "|" << int (htcapabilities.GetSupportedChannelWidth ())
318
  << "|" << htcapabilities.GetShortGuardInterval20 ();
318
     << "|" << int (htcapabilities.GetGreenfield ())
319
     << "|" << int (htcapabilities.GetShortGuardInterval20 ());
319
320
320
  return os;
321
  return os;
321
}
322
}

Return to bug 2037