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

(-)a/src/devices/wimax/burst-profile-manager.cc (-1 / +1 lines)
 Lines 117-123    Link Here 
117
    //burst profile got to be there in DCD/UCD, assuming always all profiles are defined in DCD/UCD
117
    //burst profile got to be there in DCD/UCD, assuming always all profiles are defined in DCD/UCD
118
    NS_ASSERT(false);
118
    NS_ASSERT(false);
119
119
120
    return -1;
120
    return ~0;
121
  }
121
  }
122
122
123
  uint8_t
123
  uint8_t
(-)a/src/devices/wimax/mac-messages.cc (-1 / +1 lines)
 Lines 29-35    Link Here 
29
  NS_OBJECT_ENSURE_REGISTERED ( ManagementMessageType);
29
  NS_OBJECT_ENSURE_REGISTERED ( ManagementMessageType);
30
30
31
  ManagementMessageType::ManagementMessageType(void) :
31
  ManagementMessageType::ManagementMessageType(void) :
32
    m_type(-1)
32
    m_type(~0)
33
  {
33
  {
34
  }
34
  }
35
35
(-)a/src/devices/wimax/packet-classifier.cc (-1 / +1 lines)
 Lines 38-44    Link Here 
38
  }
38
  }
39
39
40
  PacketClassifier::PacketClassifier(void) :
40
  PacketClassifier::PacketClassifier(void) :
41
    m_priority(-1)
41
    m_priority(~0)
42
  {
42
  {
43
  }
43
  }
44
44
(-)a/src/devices/wimax/wimax-net-device.cc (-1 / +1 lines)
 Lines 46-52    Link Here 
46
  NS_OBJECT_ENSURE_REGISTERED ( WimaxNetDevice);
46
  NS_OBJECT_ENSURE_REGISTERED ( WimaxNetDevice);
47
47
48
  uint32_t WimaxNetDevice::m_nrFrames = 0;
48
  uint32_t WimaxNetDevice::m_nrFrames = 0;
49
  uint8_t WimaxNetDevice::m_direction = -1;
49
  uint8_t WimaxNetDevice::m_direction = ~0;
50
  Time WimaxNetDevice::m_frameStartTime = Seconds(0);
50
  Time WimaxNetDevice::m_frameStartTime = Seconds(0);
51
51
52
  TypeId
52
  TypeId

Return to bug 630