update boost
This commit is contained in:
@@ -88,8 +88,8 @@ private:
|
||||
|
||||
BOOST_BEAST_DECL
|
||||
static
|
||||
std::string
|
||||
unquote(string_view sr);
|
||||
void
|
||||
unquote(string_view sr, std::string & s);
|
||||
|
||||
BOOST_BEAST_DECL
|
||||
void
|
||||
@@ -244,27 +244,6 @@ cend() const ->
|
||||
return const_iterator{s_.end(), s_.end()};
|
||||
}
|
||||
|
||||
template<class T>
|
||||
auto
|
||||
ext_list::
|
||||
find(T const& s) ->
|
||||
const_iterator
|
||||
{
|
||||
return std::find_if(begin(), end(),
|
||||
[&s](value_type const& v)
|
||||
{
|
||||
return iequals(s, v.first);
|
||||
});
|
||||
}
|
||||
|
||||
template<class T>
|
||||
bool
|
||||
ext_list::
|
||||
exists(T const& s)
|
||||
{
|
||||
return find(s) != end();
|
||||
}
|
||||
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
@@ -378,19 +357,6 @@ cend() const ->
|
||||
return const_iterator{s_.end(), s_.end()};
|
||||
}
|
||||
|
||||
template<class T>
|
||||
bool
|
||||
token_list::
|
||||
exists(T const& s)
|
||||
{
|
||||
return std::find_if(begin(), end(),
|
||||
[&s](value_type const& v)
|
||||
{
|
||||
return iequals(s, v);
|
||||
}
|
||||
) != end();
|
||||
}
|
||||
|
||||
template<class Policy>
|
||||
bool
|
||||
validate_list(detail::basic_parsed_list<
|
||||
|
||||
Reference in New Issue
Block a user