From 8a2cff06074769b9f4f20372cdc7c0fb4a439cce Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Sun, 25 Mar 2007 07:24:04 -0700 Subject: [PATCH] Add back member variable initializers in p2p-net-device.cc --- src/devices/p2p/p2p-net-device.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/devices/p2p/p2p-net-device.cc b/src/devices/p2p/p2p-net-device.cc index 1677e426a..3dcf57553 100644 --- a/src/devices/p2p/p2p-net-device.cc +++ b/src/devices/p2p/p2p-net-device.cc @@ -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 << ")");