You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ma...@apache.org on 2018/08/27 03:06:16 UTC

[trafficserver] 02/02: Make destructor of QUICTransportParameters virtual

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

masaori pushed a commit to branch quic-latest
in repository https://gitbox.apache.org/repos/asf/trafficserver.git

commit 96c19776113aed9b9017ea4ee228912243087a76
Author: Masaori Koshiba <ma...@apache.org>
AuthorDate: Mon Aug 27 12:05:58 2018 +0900

    Make destructor of QUICTransportParameters virtual
---
 iocore/net/quic/QUICTransportParameters.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/iocore/net/quic/QUICTransportParameters.h b/iocore/net/quic/QUICTransportParameters.h
index cc2839a..1214001 100644
--- a/iocore/net/quic/QUICTransportParameters.h
+++ b/iocore/net/quic/QUICTransportParameters.h
@@ -70,7 +70,7 @@ class QUICTransportParameters
 {
 public:
   QUICTransportParameters(const uint8_t *buf, size_t len);
-  ~QUICTransportParameters();
+  virtual ~QUICTransportParameters();
 
   bool is_valid() const;