summaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDF.cc
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 /libqpdf/QPDF.cc
parent774d0d558e1cc3c3c58685a1f401fc6ff24d6e70 (diff)
downloadqpdf-ba5a3567a262efdfc171decf481b716ea29743d6.tar.zst
Remove redundant 'virtual' specifiers
Diffstat (limited to 'libqpdf/QPDF.cc')
-rw-r--r--libqpdf/QPDF.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/libqpdf/QPDF.cc b/libqpdf/QPDF.cc
index 056d79fc..dcfd5f46 100644
--- a/libqpdf/QPDF.cc
+++ b/libqpdf/QPDF.cc
@@ -61,41 +61,41 @@ namespace
{
public:
virtual ~InvalidInputSource() = default;
- virtual qpdf_offset_t
+ qpdf_offset_t
findAndSkipNextEOL() override
{
throwException();
return 0;
}
- virtual std::string const&
+ std::string const&
getName() const override
{
static std::string name("closed input source");
return name;
}
- virtual qpdf_offset_t
+ qpdf_offset_t
tell() override
{
throwException();
return 0;
}
- virtual void
+ void
seek(qpdf_offset_t offset, int whence) override
{
throwException();
}
- virtual void
+ void
rewind() override
{
throwException();
}
- virtual size_t
+ size_t
read(char* buffer, size_t length) override
{
throwException();
return 0;
}
- virtual void
+ void
unreadCh(char ch) override
{
throwException();