mirror of
https://github.com/boostorg/beast.git
synced 2025-07-30 12:57:31 +02:00
13
CHANGELOG.md
13
CHANGELOG.md
@ -1,3 +1,15 @@
|
|||||||
|
Version 98:
|
||||||
|
|
||||||
|
* basic_fields::key_compare is noexcept
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Version 97:
|
||||||
|
|
||||||
|
* Update redirect
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
Version 96:
|
Version 96:
|
||||||
|
|
||||||
* Move bench/ to test/
|
* Move bench/ to test/
|
||||||
@ -9,7 +21,6 @@ Version 96:
|
|||||||
* Add bench-zlib
|
* Add bench-zlib
|
||||||
* Faster zlib tests
|
* Faster zlib tests
|
||||||
* Less compression on websocket test
|
* Less compression on websocket test
|
||||||
* Update redirect
|
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -113,7 +113,9 @@ public:
|
|||||||
/// Returns `true` if lhs is less than rhs using a strict ordering
|
/// Returns `true` if lhs is less than rhs using a strict ordering
|
||||||
template<class String>
|
template<class String>
|
||||||
bool
|
bool
|
||||||
operator()(String const& lhs, value_type const& rhs) const
|
operator()(
|
||||||
|
String const& lhs,
|
||||||
|
value_type const& rhs) const noexcept
|
||||||
{
|
{
|
||||||
if(lhs.size() < rhs.name_string().size())
|
if(lhs.size() < rhs.name_string().size())
|
||||||
return true;
|
return true;
|
||||||
@ -125,7 +127,9 @@ public:
|
|||||||
/// Returns `true` if lhs is less than rhs using a strict ordering
|
/// Returns `true` if lhs is less than rhs using a strict ordering
|
||||||
template<class String>
|
template<class String>
|
||||||
bool
|
bool
|
||||||
operator()(value_type const& lhs, String const& rhs) const
|
operator()(
|
||||||
|
value_type const& lhs,
|
||||||
|
String const& rhs) const noexcept
|
||||||
{
|
{
|
||||||
if(lhs.name_string().size() < rhs.size())
|
if(lhs.name_string().size() < rhs.size())
|
||||||
return true;
|
return true;
|
||||||
@ -136,7 +140,9 @@ public:
|
|||||||
|
|
||||||
/// Returns `true` if lhs is less than rhs using a strict ordering
|
/// Returns `true` if lhs is less than rhs using a strict ordering
|
||||||
bool
|
bool
|
||||||
operator()(value_type const& lhs, value_type const& rhs) const
|
operator()(
|
||||||
|
value_type const& lhs,
|
||||||
|
value_type const& rhs) const noexcept
|
||||||
{
|
{
|
||||||
if(lhs.name_string().size() < rhs.name_string().size())
|
if(lhs.name_string().size() < rhs.name_string().size())
|
||||||
return true;
|
return true;
|
||||||
|
Reference in New Issue
Block a user