aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/Pl_LZWDecoder.hh
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/qpdf/Pl_LZWDecoder.hh')
-rw-r--r--libqpdf/qpdf/Pl_LZWDecoder.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/libqpdf/qpdf/Pl_LZWDecoder.hh b/libqpdf/qpdf/Pl_LZWDecoder.hh
index b2135aa9..792fa8ef 100644
--- a/libqpdf/qpdf/Pl_LZWDecoder.hh
+++ b/libqpdf/qpdf/Pl_LZWDecoder.hh
@@ -10,9 +10,9 @@ class Pl_LZWDecoder: public Pipeline
{
public:
Pl_LZWDecoder(char const* identifier, Pipeline* next, bool early_code_change);
- virtual ~Pl_LZWDecoder() = default;
- virtual void write(unsigned char const* buf, size_t len);
- virtual void finish();
+ ~Pl_LZWDecoder() override = default;
+ void write(unsigned char const* buf, size_t len) override;
+ void finish() override;
private:
void sendNextCode();