aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/Pl_RC4.hh
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2022-04-16 01:44:07 +0200
committerJay Berkenbilt <ejb@ql.org>2022-04-16 17:39:14 +0200
commitcdd0b4fb7d48b32686d56364cf170569bdb0149d (patch)
treeb094c966b33575eb9f2e441d1705990f45539bec /libqpdf/qpdf/Pl_RC4.hh
parent2a7d2b63c2a7284d1b1179eefbf64f5dd29aa510 (diff)
downloadqpdf-cdd0b4fb7d48b32686d56364cf170569bdb0149d.tar.zst
Use = default and = delete where possible in classes
Diffstat (limited to 'libqpdf/qpdf/Pl_RC4.hh')
-rw-r--r--libqpdf/qpdf/Pl_RC4.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/libqpdf/qpdf/Pl_RC4.hh b/libqpdf/qpdf/Pl_RC4.hh
index df5e1587..b5fc508d 100644
--- a/libqpdf/qpdf/Pl_RC4.hh
+++ b/libqpdf/qpdf/Pl_RC4.hh
@@ -17,7 +17,7 @@ class Pl_RC4: public Pipeline
unsigned char const* key_data,
int key_len = -1,
size_t out_bufsize = def_bufsize);
- virtual ~Pl_RC4();
+ virtual ~Pl_RC4() = default;
virtual void write(unsigned char* data, size_t len);
virtual void finish();