make the destructor non-pure for the python bindings
authorMathieu Lacage <mathieu.lacage@sophia.inria.fr>
Sun, 15 Nov 2009 09:16:32 +0100
changeset 5533 63e2dbaf577c
parent 5530 e5e73d83bec3
child 5534 3bc5cbc9431d
make the destructor non-pure for the python bindings
src/core/ref-count-base.h
--- a/src/core/ref-count-base.h	Sat Nov 14 21:55:18 2009 +0100
+++ b/src/core/ref-count-base.h	Sun Nov 15 09:16:32 2009 +0100
@@ -40,7 +40,7 @@
   /**
    * This only thing this class does it declare a virtual destructor
    */
-  virtual ~RefCountBase () = 0;
+  virtual ~RefCountBase ();
 };
 
 } // namespace ns3