blob: 5de8dae0066776783a56eb94c80bdd276bd35e14 [file] [log] [blame]
Patrick Williams864cc432023-02-09 14:54:44 -06001From 104fba23b1c0c67c92777b3165c6dca99558a656 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 6 Feb 2023 18:13:52 -0800
4Subject: [PATCH] use noexcept(false) instead of throw() from c++17 onwards
5
6C++17 removed dynamic exception specifications [1]
7they had been deprecated since C++11, replace
8throw(whatever) with noexcept(false).
9
10[1] https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0003r5.html
11
12Upstream-Status: Submitted [https://github.com/OpenPrinting/cups-filters/pull/505]
13Signed-off-by: Khem Raj <raj.khem@gmail.com>
14---
15 filter/pdftoraster.cxx | 4 ++++
16 1 file changed, 4 insertions(+)
17
18diff --git a/filter/pdftoraster.cxx b/filter/pdftoraster.cxx
19index e8af184fb..e91e22459 100755
20--- a/filter/pdftoraster.cxx
21+++ b/filter/pdftoraster.cxx
22@@ -2148,7 +2148,11 @@ int main(int argc, char *argv[]) {
23 /* For compatibility with g++ >= 4.7 compilers _GLIBCXX_THROW
24 * should be used as a guard, otherwise use traditional definition */
25 #ifndef _GLIBCXX_THROW
26+#if __cplusplus < 201703L
27 #define _GLIBCXX_THROW throw
28+#else
29+#define _GLIBCXX_THROW(x) noexcept(false)
30+#endif
31 #endif
32
33 void * operator new(size_t size) _GLIBCXX_THROW (std::bad_alloc)
34--
352.39.1
36