3 workdir/UnpackedTarball/poppler/poppler/CertificateInfo.cc:42:34: error: function ‘X509CertificateInfo::EntityInfo& X509CertificateInfo::EntityInfo::operator=(X509CertificateInfo::EntityInfo&&)’ defaulted on its redeclaration with an exception-specification that differs from the implicit exception-specification ‘’
5 --- poppler/poppler/CertificateInfo.h.orig 2022-09-14 19:32:12.426351385 +0200
6 +++ poppler/poppler/CertificateInfo.h 2022-09-14 19:32:18.947347812 +0200
10 EntityInfo(EntityInfo &&) noexcept;
11 - EntityInfo &operator=(EntityInfo &&) noexcept;
12 + EntityInfo &operator=(EntityInfo &&) /*noexcept*/;
14 EntityInfo(const EntityInfo &) = delete;
15 EntityInfo &operator=(const EntityInfo &) = delete;
16 --- poppler/poppler/CertificateInfo.cc.orig 2022-09-14 19:31:10.225385467 +0200
17 +++ poppler/poppler/CertificateInfo.cc 2022-09-14 19:31:12.572384182 +0200
20 X509CertificateInfo::EntityInfo::EntityInfo(X509CertificateInfo::EntityInfo &&other) noexcept = default;
22 -X509CertificateInfo::EntityInfo &X509CertificateInfo::EntityInfo::operator=(X509CertificateInfo::EntityInfo &&other) noexcept = default;
23 +X509CertificateInfo::EntityInfo &X509CertificateInfo::EntityInfo::operator=(X509CertificateInfo::EntityInfo &&other) /*noexcept*/ = default;
25 X509CertificateInfo::X509CertificateInfo() : ku_extensions(KU_NONE), cert_version(-1), is_self_signed(false) { }
27 --- poppler/poppler/GfxFont.cc.orig 2022-09-14 20:24:32.569607333 +0200
28 +++ poppler/poppler/GfxFont.cc 2022-09-14 20:24:52.323596186 +0200
31 GfxFontLoc::GfxFontLoc(GfxFontLoc &&other) noexcept = default;
33 -GfxFontLoc &GfxFontLoc::operator=(GfxFontLoc &&other) noexcept = default;
34 +GfxFontLoc &GfxFontLoc::operator=(GfxFontLoc &&other) /*noexcept*/ = default;
36 void GfxFontLoc::setPath(GooString *pathA)
38 --- poppler/poppler/GfxFont.h.orig 2022-09-14 20:24:30.784608340 +0200
39 +++ poppler/poppler/GfxFont.h 2022-09-14 20:25:08.850586861 +0200
41 GfxFontLoc(const GfxFontLoc &) = delete;
42 GfxFontLoc(GfxFontLoc &&) noexcept;
43 GfxFontLoc &operator=(const GfxFontLoc &) = delete;
44 - GfxFontLoc &operator=(GfxFontLoc &&other) noexcept;
45 + GfxFontLoc &operator=(GfxFontLoc &&other) /*noexcept*/;
47 // Set the 'path' string from a GooString on the heap.
48 // Ownership of the object is taken.