From 6488b156f736660ea0636af0003bd863e23af640 Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Tue, 9 Jan 2024 15:25:36 -0500 Subject: Fix deleted copy constructors for Config classes --- include/qpdf/QPDFJob.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include') diff --git a/include/qpdf/QPDFJob.hh b/include/qpdf/QPDFJob.hh index d2028b0a..315423cd 100644 --- a/include/qpdf/QPDFJob.hh +++ b/include/qpdf/QPDFJob.hh @@ -271,7 +271,7 @@ class QPDFJob private: UOConfig(Config*); - UOConfig(PagesConfig const&) = delete; + UOConfig(UOConfig const&) = delete; Config* config; }; @@ -291,7 +291,7 @@ class QPDFJob private: EncConfig(Config*); - EncConfig(PagesConfig const&) = delete; + EncConfig(EncConfig const&) = delete; Config* config; }; @@ -309,7 +309,7 @@ class QPDFJob private: PageLabelsConfig(Config*); - PageLabelsConfig(PagesConfig const&) = delete; + PageLabelsConfig(PageLabelsConfig const&) = delete; Config* config; }; -- cgit v1.2.3-54-g00ecf