--- boost/network/protocol/http/server/impl/parsers.ipp.orig 2018-07-19 06:37:41 UTC +++ boost/network/protocol/http/server/impl/parsers.ipp @@ -13,6 +13,7 @@ #include #include #include +#include #ifdef BOOST_NETWORK_NO_LIB #ifndef BOOST_NETWORK_INLINE @@ -32,7 +33,7 @@ struct assign_to_container_from_value // struct assign_to_container_from_value { static void call(u32_string const& val, std::string& attr) { - u32_to_u8_iterator begin = val.begin(), + boost::u32_to_u8_iterator begin = val.begin(), end = val.end(); for (; begin != end; ++begin) attr += *begin; }