@@ -72,11 +72,11 @@ namespace network {
72
72
/* *
73
73
* \brief Destructor.
74
74
*/
75
- ~request_options () NETWORK_NOEXCEPT {
75
+ ~request_options () noexcept {
76
76
77
77
}
78
78
79
- void swap (request_options &other) NETWORK_NOEXCEPT {
79
+ void swap (request_options &other) noexcept {
80
80
using std::swap;
81
81
swap (resolve_timeout_, other.resolve_timeout_ );
82
82
swap (read_timeout_, other.read_timeout_ );
@@ -129,7 +129,7 @@ namespace network {
129
129
};
130
130
131
131
inline
132
- void swap (request_options &lhs, request_options &rhs) NETWORK_NOEXCEPT {
132
+ void swap (request_options &lhs, request_options &rhs) noexcept {
133
133
lhs.swap (rhs);
134
134
}
135
135
@@ -158,7 +158,7 @@ namespace network {
158
158
/* *
159
159
* \brief Destructor.
160
160
*/
161
- virtual ~byte_source () NETWORK_NOEXCEPT {}
161
+ virtual ~byte_source () noexcept {}
162
162
163
163
/* *
164
164
* \brief Allows the request to read the data into a local
@@ -271,7 +271,7 @@ namespace network {
271
271
/* *
272
272
* \brief Move constructor.
273
273
*/
274
- request (request &&other) NETWORK_NOEXCEPT
274
+ request (request &&other) noexcept
275
275
: method_(std::move(other.method_))
276
276
, path_(std::move(other.path_))
277
277
, version_(std::move(other.version_))
@@ -289,14 +289,14 @@ namespace network {
289
289
/* *
290
290
* \brief Destructor.
291
291
*/
292
- ~request () NETWORK_NOEXCEPT {
292
+ ~request () noexcept {
293
293
294
294
}
295
295
296
296
/* *
297
297
* \brief Swap.
298
298
*/
299
- void swap (request &other) NETWORK_NOEXCEPT {
299
+ void swap (request &other) noexcept {
300
300
using std::swap;
301
301
swap (method_, other.method_ );
302
302
swap (path_, other.path_ );
@@ -412,7 +412,7 @@ namespace network {
412
412
};
413
413
414
414
inline
415
- void swap (request &lhs, request &rhs) NETWORK_NOEXCEPT {
415
+ void swap (request &lhs, request &rhs) noexcept {
416
416
lhs.swap (rhs);
417
417
}
418
418
} // namespace v2
0 commit comments