Skip to content

Commit 552ce94

Browse files
jalegidojjll
andauthored
Compatibility with boost 1.83 (#902)
Co-authored-by: jjll <jjll@gmv.com>
1 parent d42fb59 commit 552ce94

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libs/network/src/server_request_parsers_impl.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#include <boost/spirit/include/qi.hpp>
1313
#include <boost/fusion/adapted/std_tuple.hpp>
1414
#include <boost/network/protocol/http/message/header.hpp>
15+
#include <boost/regex/pending/unicode_iterator.hpp>
1516

1617
namespace boost {
1718
namespace spirit {
@@ -22,7 +23,7 @@ typedef std::basic_string<uint32_t> u32_string;
2223
template <> // <typename Attrib, typename T, typename Enable>
2324
struct assign_to_container_from_value<std::string, u32_string, void> {
2425
static void call(u32_string const& val, std::string& attr) {
25-
u32_to_u8_iterator<u32_string::const_iterator> begin = val.begin(),
26+
boost::u32_to_u8_iterator<u32_string::const_iterator> begin = val.begin(),
2627
end = val.end();
2728
for (; begin != end; ++begin) attr += *begin;
2829
}

0 commit comments

Comments
 (0)