more logging. Make sure we invoke parent's Dispose method
authorMathieu Lacage <mathieu.lacage@sophia.inria.fr>
Sun, 25 May 2008 14:43:41 -0700
changeset 3149 5974bac1688f
parent 3148 87ee5483cef9
child 3150 7350a68e5856
more logging. Make sure we invoke parent's Dispose method
src/internet-node/arp-ipv4-interface.cc
--- a/src/internet-node/arp-ipv4-interface.cc	Sun May 25 14:42:55 2008 -0700
+++ b/src/internet-node/arp-ipv4-interface.cc	Sun May 25 14:43:41 2008 -0700
@@ -53,20 +53,22 @@
   : m_node (0),
     m_device (0)
 {
-  NS_LOG_FUNCTION_NOARGS ();
+  NS_LOG_FUNCTION (this);
 }
 
 ArpIpv4Interface::~ArpIpv4Interface ()
 {
-  NS_LOG_FUNCTION_NOARGS ();
+  NS_LOG_FUNCTION (this);
 }
 
 void 
 ArpIpv4Interface::DoDispose (void)
 {
+  NS_LOG_FUNCTION (this);
   m_node = 0;
   m_device = 0;
   m_cache = 0;
+  Ipv4Interface::DoDispose ();
 }
 
 void