Bump version to 6.4.7.2.M8
[LibreOffice.git] / external / poppler / gcc7-EntityInfo.patch.1
blobb450bff93af9d2c4c9bc3b90cf3c896ee6bdf405
1 gcc 7.3.1 says:
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
7 @@ -70,7 +70,7 @@
8          ~EntityInfo();
9  
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
18 @@ -39,7 +39,7 @@
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
29 @@ -180,7 +180,7 @@
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)
37  {
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
40 @@ -124,7 +124,7 @@
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.