File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 15
15
#include < boost/network/protocol/http/response.hpp>
16
16
#include < boost/network/protocol/http/client.hpp>
17
17
18
- #endif // __NETWORK_PROTOCOL_HTTP_20070908-1_HPP__
18
+ #endif // __NETWORK_PROTOCOL_HTTP_20070908-1_HPP__
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ namespace boost { namespace network { namespace http {
63
63
<<
64
64
header ( line.substr (0 , line.find (' :' )) ,
65
65
line.find (' ' ) == tag::str_type::npos ?
66
- tag::str_type ()
66
+ typename tag::str_type ()
67
67
: line.substr (line.find (' ' ) + 1 ));
68
68
};
69
69
Original file line number Diff line number Diff line change @@ -107,23 +107,23 @@ namespace boost { namespace network { namespace http {
107
107
{ };
108
108
109
109
typename tag::str_type const host () const {
110
- return fusion::at_key<tags::host>(uri_parts);
110
+ return fusion::at_key<typename tags::host>(uri_parts);
111
111
};
112
112
113
113
unsigned int port () const {
114
- return fusion::at_key<tags::port>(uri_parts);
114
+ return fusion::at_key<typename tags::port>(uri_parts);
115
115
};
116
116
117
117
typename tag::str_type const path () const {
118
- return fusion::at_key<tags::path>(uri_parts);
118
+ return fusion::at_key<typename tags::path>(uri_parts);
119
119
};
120
120
121
121
typename tag::str_type const query () const {
122
- return fusion::at_key<tags::query>(uri_parts);
122
+ return fusion::at_key<typename tags::query>(uri_parts);
123
123
};
124
124
125
125
typename tag::str_type const anchor () const {
126
- return fusion::at_key<tags::anchor>(uri_parts);
126
+ return fusion::at_key<typename tags::anchor>(uri_parts);
127
127
};
128
128
};
129
129
@@ -133,4 +133,4 @@ namespace boost { namespace network { namespace http {
133
133
134
134
}; // namespace boost
135
135
136
- #endif // __NETWORK_PROTOCOL_HTTP_REQUEST_IMPL_20070908_1_HPP__
136
+ #endif // __NETWORK_PROTOCOL_HTTP_REQUEST_IMPL_20070908_1_HPP__
You can’t perform that action at this time.
0 commit comments