Commit 772c92227ca1a2607a6862db8bc55b6a113f9348

Authored by Jay Berkenbilt
1 parent 6c7c76e0

Revert "Add default move constructor/assignment to QPDFObjectHandle"

This reverts commit 416d9668ee97c54a692d9280364746ce8aeeed43.

This commit causes numerous failures in the pikepdf test suite and
also causes a symbol to disappear from the public API. More
investigation will be required.
include/qpdf/QPDFObjectHandle.hh
... ... @@ -330,12 +330,8 @@ class QPDFObjectHandle
330 330 QPDF_DLL
331 331 QPDFObjectHandle(QPDFObjectHandle const&) = default;
332 332 QPDF_DLL
333   - QPDFObjectHandle(QPDFObjectHandle&&) = default;
334   - QPDF_DLL
335 333 QPDFObjectHandle& operator=(QPDFObjectHandle const&) = default;
336 334 QPDF_DLL
337   - QPDFObjectHandle& operator=(QPDFObjectHandle&&) = default;
338   - QPDF_DLL
339 335 inline bool isInitialized() const;
340 336  
341 337 // This method returns true if the QPDFObjectHandle objects point
... ...