2525#include < boost/range/iterator_range.hpp>
2626#include < boost/range/algorithm/equal.hpp>
2727#include < boost/range/as_literal.hpp>
28- #include " network/http/v2/method.hpp"
29- #include " network/http/v2/client/client_errors.hpp"
30- #include " network/uri.hpp"
28+ #include < network/config.hpp>
29+ #include < network/http/v2/method.hpp>
30+ #include < network/http/v2/client/client_errors.hpp>
31+ #include < network/uri.hpp>
3132
3233namespace network {
3334namespace http {
@@ -71,11 +72,11 @@ namespace network {
7172/* *
7273 * \brief Destructor.
7374*/
74- ~request_options ()noexcept {
75+ ~request_options ()NETWORK_NOEXCEPT {
7576
7677 }
7778
78- void swap (request_options &other)noexcept {
79+ void swap (request_options &other)NETWORK_NOEXCEPT {
7980using std::swap;
8081swap (resolve_timeout_, other.resolve_timeout_ );
8182swap (read_timeout_, other.read_timeout_ );
@@ -128,7 +129,7 @@ namespace network {
128129 };
129130
130131inline
131- void swap (request_options &lhs, request_options &rhs)noexcept {
132+ void swap (request_options &lhs, request_options &rhs)NETWORK_NOEXCEPT {
132133 lhs.swap (rhs);
133134 }
134135
@@ -157,7 +158,7 @@ namespace network {
157158/* *
158159 * \brief Destructor.
159160*/
160- virtual ~byte_source ()noexcept {}
161+ virtual ~byte_source ()NETWORK_NOEXCEPT {}
161162
162163/* *
163164 * \brief Allows the request to read the data into a local
@@ -270,7 +271,7 @@ namespace network {
270271/* *
271272 * \brief Move constructor.
272273*/
273- request (request &&other)noexcept
274+ request (request &&other)NETWORK_NOEXCEPT
274275 : method_(std::move(other.method_))
275276 , path_(std::move(other.path_))
276277 , version_(std::move(other.version_))
@@ -288,14 +289,14 @@ namespace network {
288289/* *
289290 * \brief Destructor.
290291*/
291- ~request ()noexcept {
292+ ~request ()NETWORK_NOEXCEPT {
292293
293294 }
294295
295296/* *
296297 * \brief Swap.
297298*/
298- void swap (request &other)noexcept {
299+ void swap (request &other)NETWORK_NOEXCEPT {
299300using std::swap;
300301swap (method_, other.method_ );
301302swap (path_, other.path_ );
@@ -411,7 +412,7 @@ namespace network {
411412 };
412413
413414inline
414- void swap (request &lhs, request &rhs)noexcept {
415+ void swap (request &lhs, request &rhs)NETWORK_NOEXCEPT {
415416 lhs.swap (rhs);
416417 }
417418 }// namespace v2