Skip to content

Commit 48e315d

Browse files
authored
Merge pull request cpp-netlib#685 from enricodetoma/master
Fix for issue cpp-netlib#648: cpp-netlib 0.12.0 build error with visual studio 2015 and boost 1.60
2 parents 77dc2a2 + b2fe8ee commit 48e315d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/network/src/server_request_parsers_impl.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ void parse_version(
4444

4545
void parse_headers(
4646
std::string const& input, std::vector<request_header_narrow>& container) {
47-
using namespace boost::spirit::qi;
4847
u8_to_u32_iterator<std::string::const_iterator> begin = input.begin(),
4948
end = input.end();
49+
using namespace boost::spirit::qi;
5050
typedef as<boost::spirit::traits::u32_string> as_u32_string;
5151
parse(begin, end,
5252
*(+((alnum | punct) - ':') >> lit(": ") >>

0 commit comments

Comments
 (0)