summaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/Pl_Base64.hh
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/qpdf/Pl_Base64.hh')
-rw-r--r--libqpdf/qpdf/Pl_Base64.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/libqpdf/qpdf/Pl_Base64.hh b/libqpdf/qpdf/Pl_Base64.hh
index 788bfd6d..a084a17f 100644
--- a/libqpdf/qpdf/Pl_Base64.hh
+++ b/libqpdf/qpdf/Pl_Base64.hh
@@ -8,9 +8,9 @@ class Pl_Base64: public Pipeline
public:
enum action_e { a_encode, a_decode };
Pl_Base64(char const* identifier, Pipeline* next, action_e);
- virtual ~Pl_Base64() = default;
- virtual void write(unsigned char const* buf, size_t len) override;
- virtual void finish() override;
+ ~Pl_Base64() override = default;
+ void write(unsigned char const* buf, size_t len) override;
+ void finish() override;
private:
void decode(unsigned char const* buf, size_t len);