2
1
mirror of https://github.com/qpdf/qpdf.git synced 2025-01-03 07:12:28 +00:00

Fix deleted copy constructors for Config classes

This commit is contained in:
Jay Berkenbilt 2024-01-09 15:25:36 -05:00
parent 0df672049b
commit 6488b156f7

View File

@ -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;
};