From cdd0b4fb7d48b32686d56364cf170569bdb0149d Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Fri, 15 Apr 2022 19:44:07 -0400 Subject: Use = default and = delete where possible in classes --- libqpdf/Pl_RunLength.cc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'libqpdf/Pl_RunLength.cc') diff --git a/libqpdf/Pl_RunLength.cc b/libqpdf/Pl_RunLength.cc index b92e2756..86e4b684 100644 --- a/libqpdf/Pl_RunLength.cc +++ b/libqpdf/Pl_RunLength.cc @@ -10,10 +10,6 @@ Pl_RunLength::Members::Members(action_e action) : { } -Pl_RunLength::Members::~Members() -{ -} - Pl_RunLength::Pl_RunLength( char const* identifier, Pipeline* next, action_e action) : Pipeline(identifier, next), @@ -23,6 +19,8 @@ Pl_RunLength::Pl_RunLength( Pl_RunLength::~Pl_RunLength() { + // Must be explicit and not inline -- see QPDF_DLL_CLASS in + // README-maintainer } void -- cgit v1.2.3-54-g00ecf