summaryrefslogtreecommitdiff
path: root/games-board/pokerth/files/pokerth-1.1.1-boost-noexcept.patch
blob: ab112e831a0c9b813b2b7ebd9f235a185402ebf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
Keep dynamic exception specifications in sync with boost.
See also: https://bugs.gentoo.org/show_bug.cgi?id=603354

--- a/src/third_party/websocketpp/websocketpp/error.hpp
+++ b/src/third_party/websocketpp/websocketpp/error.hpp
@@ -122,7 +122,7 @@
 public:
     category() {}
 
-    char const * name() const _WEBSOCKETPP_NOEXCEPT_TOKEN_ {
+    char const * name() const BOOST_SYSTEM_NOEXCEPT {
         return "websocketpp";
     }
 
--- a/src/third_party/websocketpp/websocketpp/extensions/extension.hpp
+++ b/src/third_party/websocketpp/websocketpp/extensions/extension.hpp
@@ -62,7 +62,7 @@
 public:
     category() {}
 
-    const char *name() const _WEBSOCKETPP_NOEXCEPT_TOKEN_ {
+    const char *name() const BOOST_SYSTEM_NOEXCEPT {
         return "websocketpp.extension";
     }
 
--- a/src/third_party/websocketpp/websocketpp/processors/base.hpp
+++ b/src/third_party/websocketpp/websocketpp/processors/base.hpp
@@ -159,7 +159,7 @@
 public:
     processor_category() {}
 
-    char const * name() const _WEBSOCKETPP_NOEXCEPT_TOKEN_ {
+    char const * name() const BOOST_SYSTEM_NOEXCEPT {
         return "websocketpp.processor";
     }
 
--- a/src/third_party/websocketpp/websocketpp/transport/asio/base.hpp
+++ b/src/third_party/websocketpp/websocketpp/transport/asio/base.hpp
@@ -202,7 +202,7 @@
 /// Asio transport error category
 class category : public lib::error_category {
 public:
-    char const * name() const _WEBSOCKETPP_NOEXCEPT_TOKEN_ {
+    char const * name() const BOOST_SYSTEM_NOEXCEPT {
         return "websocketpp.transport.asio";
     }
 
--- a/src/third_party/websocketpp/websocketpp/transport/asio/security/base.hpp
+++ b/src/third_party/websocketpp/websocketpp/transport/asio/security/base.hpp
@@ -102,7 +102,7 @@
 /// Error category related to asio transport socket policies
 class socket_category : public lib::error_category {
 public:
-    const char *name() const _WEBSOCKETPP_NOEXCEPT_TOKEN_ {
+    const char *name() const BOOST_SYSTEM_NOEXCEPT {
         return "websocketpp.transport.asio.socket";
     }
 
--- a/src/third_party/websocketpp/websocketpp/transport/base/connection.hpp
+++ b/src/third_party/websocketpp/websocketpp/transport/base/connection.hpp
@@ -179,7 +179,7 @@
     public:
     category() {}
 
-    char const * name() const _WEBSOCKETPP_NOEXCEPT_TOKEN_ {
+    char const * name() const BOOST_SYSTEM_NOEXCEPT {
         return "websocketpp.transport";
     }
 
--- a/src/third_party/websocketpp/websocketpp/transport/iostream/base.hpp
+++ b/src/third_party/websocketpp/websocketpp/transport/iostream/base.hpp
@@ -64,7 +64,7 @@
     public:
     category() {}
 
-    char const * name() const _WEBSOCKETPP_NOEXCEPT_TOKEN_ {
+    char const * name() const BOOST_SYSTEM_NOEXCEPT {
         return "websocketpp.transport.iostream";
     }