@@ -72,11 +72,11 @@ namespace network {
7272/* *
7373 * \brief Destructor.
7474*/
75- ~request_options ()NETWORK_NOEXCEPT {
75+ ~request_options ()noexcept {
7676
7777 }
7878
79- void swap (request_options &other)NETWORK_NOEXCEPT {
79+ void swap (request_options &other)noexcept {
8080using std::swap;
8181swap (resolve_timeout_, other.resolve_timeout_ );
8282swap (read_timeout_, other.read_timeout_ );
@@ -129,7 +129,7 @@ namespace network {
129129 };
130130
131131inline
132- void swap (request_options &lhs, request_options &rhs)NETWORK_NOEXCEPT {
132+ void swap (request_options &lhs, request_options &rhs)noexcept {
133133 lhs.swap (rhs);
134134 }
135135
@@ -158,7 +158,7 @@ namespace network {
158158/* *
159159 * \brief Destructor.
160160*/
161- virtual ~byte_source ()NETWORK_NOEXCEPT {}
161+ virtual ~byte_source ()noexcept {}
162162
163163/* *
164164 * \brief Allows the request to read the data into a local
@@ -271,7 +271,7 @@ namespace network {
271271/* *
272272 * \brief Move constructor.
273273*/
274- request (request &&other)NETWORK_NOEXCEPT
274+ request (request &&other)noexcept
275275 : method_(std::move(other.method_))
276276 , path_(std::move(other.path_))
277277 , version_(std::move(other.version_))
@@ -289,14 +289,14 @@ namespace network {
289289/* *
290290 * \brief Destructor.
291291*/
292- ~request ()NETWORK_NOEXCEPT {
292+ ~request ()noexcept {
293293
294294 }
295295
296296/* *
297297 * \brief Swap.
298298*/
299- void swap (request &other)NETWORK_NOEXCEPT {
299+ void swap (request &other)noexcept {
300300using std::swap;
301301swap (method_, other.method_ );
302302swap (path_, other.path_ );
@@ -412,7 +412,7 @@ namespace network {
412412 };
413413
414414inline
415- void swap (request &lhs, request &rhs)NETWORK_NOEXCEPT {
415+ void swap (request &lhs, request &rhs)noexcept {
416416 lhs.swap (rhs);
417417 }
418418 }// namespace v2