You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2020/07/23 21:24:12 UTC

[trafficserver] 03/03: Add virtual destructor to QUICTPConfig. (#7036)

This is an automated email from the ASF dual-hosted git repository.

zwoop pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git

commit 0ce412393e7d0e17f7ce8636864ef73aa7b01606
Author: Alan M. Carroll <am...@apache.org>
AuthorDate: Thu Jul 23 16:10:26 2020 -0500

    Add virtual destructor to QUICTPConfig. (#7036)
    
    (cherry picked from commit 2b85491291e0711b51e6397f02cb23bb04e59f34)
---
 iocore/net/quic/QUICTypes.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/iocore/net/quic/QUICTypes.h b/iocore/net/quic/QUICTypes.h
index 5139b78..bb5c028 100644
--- a/iocore/net/quic/QUICTypes.h
+++ b/iocore/net/quic/QUICTypes.h
@@ -520,6 +520,7 @@ private:
 class QUICTPConfig
 {
 public:
+  virtual ~QUICTPConfig()                                                                          = default; // required
   virtual uint32_t no_activity_timeout() const                                                     = 0;
   virtual const IpEndpoint *preferred_address_ipv4() const                                         = 0;
   virtual const IpEndpoint *preferred_address_ipv6() const                                         = 0;