summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorm-holger <m-holger@kubitscheck.org>2023-05-20 14:56:33 +0200
committerm-holger <m-holger@kubitscheck.org>2023-05-20 16:41:52 +0200
commitba5a3567a262efdfc171decf481b716ea29743d6 (patch)
treedb242a254e2619b8853ea32d952ed0150ee92201 /include
parent774d0d558e1cc3c3c58685a1f401fc6ff24d6e70 (diff)
downloadqpdf-ba5a3567a262efdfc171decf481b716ea29743d6.tar.zst
Remove redundant 'virtual' specifiers
Diffstat (limited to 'include')
-rw-r--r--include/qpdf/QPDFWriter.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/qpdf/QPDFWriter.hh b/include/qpdf/QPDFWriter.hh
index 8305974c..162d4f4e 100644
--- a/include/qpdf/QPDFWriter.hh
+++ b/include/qpdf/QPDFWriter.hh
@@ -102,7 +102,7 @@ class QPDFWriter
QPDF_DLL
virtual ~FunctionProgressReporter();
QPDF_DLL
- virtual void reportProgress(int) override;
+ void reportProgress(int) override;
private:
std::function<void(int)> handler;