Add back member variable initializers in p2p-net-device.cc

This commit is contained in:
Tom Henderson
2007-03-25 07:24:04 -07:00
parent c2a49fc1c2
commit 8a2cff0607

View File

@@ -34,7 +34,8 @@ namespace ns3 {
PointToPointNetDevice::PointToPointNetDevice(Node* node) :
NetDevice(node, MacAddress("00:00:00:00:00:00"))
NetDevice(node, MacAddress("00:00:00:00:00:00")), m_phy(0), m_channel(0),
m_queue(0)
{
NS_DEBUG ("PointToPointNetDevice::PointToPointNetDevice (" << node << ")");