mirror of
https://github.com/qpdf/qpdf.git
synced 2025-01-05 08:02:11 +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:
|
private:
|
||||||
UOConfig(Config*);
|
UOConfig(Config*);
|
||||||
UOConfig(PagesConfig const&) = delete;
|
UOConfig(UOConfig const&) = delete;
|
||||||
|
|
||||||
Config* config;
|
Config* config;
|
||||||
};
|
};
|
||||||
@ -291,7 +291,7 @@ class QPDFJob
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
EncConfig(Config*);
|
EncConfig(Config*);
|
||||||
EncConfig(PagesConfig const&) = delete;
|
EncConfig(EncConfig const&) = delete;
|
||||||
|
|
||||||
Config* config;
|
Config* config;
|
||||||
};
|
};
|
||||||
@ -309,7 +309,7 @@ class QPDFJob
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
PageLabelsConfig(Config*);
|
PageLabelsConfig(Config*);
|
||||||
PageLabelsConfig(PagesConfig const&) = delete;
|
PageLabelsConfig(PageLabelsConfig const&) = delete;
|
||||||
|
|
||||||
Config* config;
|
Config* config;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user