@@ -55,8 +55,8 @@ namespace boost { namespace network { namespace http {
5555 boost::uint16_t status = response_.status ();
5656if (status >=300 && status <=307 ) {
5757typename headers_range<http::basic_response<Tag> >::type location_range =headers (response_)[" Location" ];
58- typename range_iterator<typename headers_range<http::basic_request<Tag> >::type>::type location_header =begin (location_range);
59- if (location_header !=end (location_range)) {
58+ typename range_iterator<typename headers_range<http::basic_request<Tag> >::type>::type location_header =boost:: begin (location_range);
59+ if (location_header !=boost:: end (location_range)) {
6060 request_.uri (location_header->second );
6161 }else throw std::runtime_error (" Location header not defined in redirect response." );
6262 }else break ;
@@ -81,7 +81,7 @@ namespace boost { namespace network { namespace http {
8181 , follow_redirect_
8282 , request_.host ()
8383 , lexical_cast<string_type>(request_.port ())
84- ,bind (
84+ ,boost:: bind (
8585 &simple_connection_policy<Tag,version_major,version_minor>::resolve,
8686this ,
8787 _1, _2, _3