aboutsummaryrefslogtreecommitdiffstats
path: root/fuzz
diff options
context:
space:
mode:
authorm-holger <m-holger@kubitscheck.org>2023-05-20 15:25:46 +0200
committerm-holger <m-holger@kubitscheck.org>2023-05-20 16:41:56 +0200
commite6577a1323cd813a92ddbc8841e1342c05de071a (patch)
treec1efea1b140cac94dbaf496ae6ec5e0a621daa07 /fuzz
parentba5a3567a262efdfc171decf481b716ea29743d6 (diff)
downloadqpdf-e6577a1323cd813a92ddbc8841e1342c05de071a.tar.zst
Replace 'virtual' specifier with 'override'
Diffstat (limited to 'fuzz')
-rw-r--r--fuzz/qpdf_fuzzer.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/fuzz/qpdf_fuzzer.cc b/fuzz/qpdf_fuzzer.cc
index c402a772..8d4534bd 100644
--- a/fuzz/qpdf_fuzzer.cc
+++ b/fuzz/qpdf_fuzzer.cc
@@ -14,13 +14,13 @@
class DiscardContents: public QPDFObjectHandle::ParserCallbacks
{
public:
- virtual ~DiscardContents() = default;
- virtual void
- handleObject(QPDFObjectHandle)
+ ~DiscardContents() override = default;
+ void
+ handleObject(QPDFObjectHandle) override
{
}
- virtual void
- handleEOF()
+ void
+ handleEOF() override
{
}
};