Commit 6488b156f736660ea0636af0003bd863e23af640

Authored by Jay Berkenbilt
1 parent 0df67204

Fix deleted copy constructors for Config classes

Showing 1 changed file with 3 additions and 3 deletions
include/qpdf/QPDFJob.hh
... ... @@ -271,7 +271,7 @@ class QPDFJob
271 271  
272 272 private:
273 273 UOConfig(Config*);
274   - UOConfig(PagesConfig const&) = delete;
  274 + UOConfig(UOConfig const&) = delete;
275 275  
276 276 Config* config;
277 277 };
... ... @@ -291,7 +291,7 @@ class QPDFJob
291 291  
292 292 private:
293 293 EncConfig(Config*);
294   - EncConfig(PagesConfig const&) = delete;
  294 + EncConfig(EncConfig const&) = delete;
295 295  
296 296 Config* config;
297 297 };
... ... @@ -309,7 +309,7 @@ class QPDFJob
309 309  
310 310 private:
311 311 PageLabelsConfig(Config*);
312   - PageLabelsConfig(PagesConfig const&) = delete;
  312 + PageLabelsConfig(PageLabelsConfig const&) = delete;
313 313  
314 314 Config* config;
315 315 };
... ...