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:
parent
0df672049b
commit
6488b156f7
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user