diff --git a/doc/tutorial/tracing.texi b/doc/tutorial/tracing.texi index 436612f93..5cc65d4de 100644 --- a/doc/tutorial/tracing.texi +++ b/doc/tutorial/tracing.texi @@ -2255,7 +2255,7 @@ implementation method. For example, the lowest level pcap method, @verbatim void EnablePcap (std::string prefix, Ptr nd, bool promiscuous = false); -@verbatim +@end verbatim will call the device implementation of @code{EnablePcapInternal} directly. All other public pcap tracing methods build on this implementation to provide diff --git a/src/helper/csma-helper.h b/src/helper/csma-helper.h index 7305a6f79..67a788cf0 100644 --- a/src/helper/csma-helper.h +++ b/src/helper/csma-helper.h @@ -50,6 +50,7 @@ public: * Construct a CsmaHelper. */ CsmaHelper (); + virtual ~CsmaHelper () {} /** * \param type the type of queue diff --git a/src/helper/point-to-point-helper.h b/src/helper/point-to-point-helper.h index afeb4c292..b3f37293a 100644 --- a/src/helper/point-to-point-helper.h +++ b/src/helper/point-to-point-helper.h @@ -50,6 +50,7 @@ public: * point networks. */ PointToPointHelper (); + virtual ~PointToPointHelper () {} /** * Each point to point net device must have a queue to pass packets through.