From 18a666cf1b4fab9dddadd6f09a7ba9356157e35d Mon Sep 17 00:00:00 2001 From: rtmeng Date: Thu, 18 Apr 2024 22:44:46 -0400 Subject: [PATCH] Add missed override --- Pcap++/header/PcapFileDevice.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pcap++/header/PcapFileDevice.h b/Pcap++/header/PcapFileDevice.h index c01396247c..c05a2c2815 100644 --- a/Pcap++/header/PcapFileDevice.h +++ b/Pcap++/header/PcapFileDevice.h @@ -461,7 +461,7 @@ namespace pcpp * Get statistics of packets written so far. * @param[out] stats The stats struct where stats are returned */ - virtual void getStatistics(PcapStats& stats) const; + void getStatistics(PcapStats& stats) const override; };