We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentd42fb59 commit552ce94Copy full SHA for 552ce94
libs/network/src/server_request_parsers_impl.cpp
@@ -12,6 +12,7 @@
12
#include<boost/spirit/include/qi.hpp>
13
#include<boost/fusion/adapted/std_tuple.hpp>
14
#include<boost/network/protocol/http/message/header.hpp>
15
+#include<boost/regex/pending/unicode_iterator.hpp>
16
17
namespaceboost {
18
namespacespirit {
@@ -22,7 +23,7 @@ typedef std::basic_string<uint32_t> u32_string;
22
23
template<>// <typename Attrib, typename T, typename Enable>
24
structassign_to_container_from_value<std::string, u32_string,void> {
25
staticvoidcall(u32_stringconst& val, std::string& attr) {
- u32_to_u8_iterator<u32_string::const_iterator> begin = val.begin(),
26
+boost::u32_to_u8_iterator<u32_string::const_iterator> begin = val.begin(),
27
end = val.end();
28
for (; begin != end; ++begin) attr += *begin;
29
}