Skip to content

Commit 87dd551

Browse files
authored
Merge pull request cpp-netlib#23 from sneves/0.13-release
fix msvc name ambiguity
2 parents 8addc74 + 70bc946 commit 87dd551

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

boost/network/protocol/http/server/impl/parsers.ipp

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ BOOST_NETWORK_INLINE void parse_version(
5656

5757
BOOST_NETWORK_INLINE void parse_headers(
5858
std::string const& input, std::vector<request_header_narrow>& container) {
59-
using namespace boost::spirit::qi;
6059
u8_to_u32_iterator<std::string::const_iterator> begin = input.begin(),
6160
end = input.end();
61+
using namespace boost::spirit::qi;
6262
typedef as<boost::spirit::traits::u32_string> as_u32_string;
6363
parse(begin, end,
6464
*(+((alnum | punct) - ':') >> lit(": ") >>

0 commit comments

Comments
 (0)