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

dmeden pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new ef98e1b61b tidy: Add virtual dtor. Mute compiler warnings. (#11042)
ef98e1b61b is described below

commit ef98e1b61b57d813d0e3b3476b7437566b1228d1
Author: Damian Meden <dme...@apache.org>
AuthorDate: Wed Feb 7 10:01:40 2024 +0100

    tidy: Add virtual dtor. Mute compiler warnings. (#11042)
---
 include/iocore/net/quic/QUICStream.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/iocore/net/quic/QUICStream.h 
b/include/iocore/net/quic/QUICStream.h
index eadbde626a..29283d71a0 100644
--- a/include/iocore/net/quic/QUICStream.h
+++ b/include/iocore/net/quic/QUICStream.h
@@ -88,6 +88,7 @@ class QUICStreamStateListener
 {
 public:
   virtual void on_stream_state_close(const QUICStream *stream) = 0;
+  virtual ~QUICStreamStateListener()                           = default; // 
Some compilers may warn about this.
 };
 
 #define QUICStreamDebug(fmt, ...)                                              
                          \

Reply via email to