Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Compatibility with boost 1.83
  • Loading branch information
jjll committed Sep 6, 2023
commit a53f123040998744602f190944464af0e159ea19
3 changes: 2 additions & 1 deletion libs/network/src/server_request_parsers_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#include <boost/spirit/include/qi.hpp>
#include <boost/fusion/adapted/std_tuple.hpp>
#include <boost/network/protocol/http/message/header.hpp>
#include <boost/regex/pending/unicode_iterator.hpp>

namespace boost {
namespace spirit {
Expand All @@ -22,7 +23,7 @@ typedef std::basic_string<uint32_t> u32_string;
template <> // <typename Attrib, typename T, typename Enable>
struct assign_to_container_from_value<std::string, u32_string, void> {
static void call(u32_string const& val, std::string& attr) {
u32_to_u8_iterator<u32_string::const_iterator> begin = val.begin(),
boost::u32_to_u8_iterator<u32_string::const_iterator> begin = val.begin(),
end = val.end();
for (; begin != end; ++begin) attr += *begin;
}
Expand Down