update boost

This commit is contained in:
2023-11-24 12:56:13 -06:00
parent cfc99971af
commit 19d727037a
9260 changed files with 849256 additions and 299957 deletions

View File

@@ -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<