mirror of
https://github.com/boostorg/beast.git
synced 2025-08-01 05:44:38 +02:00
Rename to message::base (API Change):
Actions Required: * Change calls to message::header_part() with message::base()
This commit is contained in:
@@ -2,6 +2,14 @@ Version 70:
|
||||
|
||||
* Serialize in one step when possible
|
||||
|
||||
API Changes:
|
||||
|
||||
* Rename to message::base
|
||||
|
||||
Actions Required:
|
||||
|
||||
* Change calls to message::header_part() with message::base()
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
Version 69:
|
||||
|
@@ -489,14 +489,14 @@ struct message : header<isRequest, Fields>
|
||||
|
||||
/// Returns the header portion of the message
|
||||
header_type const&
|
||||
header_part() const
|
||||
base() const
|
||||
{
|
||||
return *this;
|
||||
}
|
||||
|
||||
/// Returns the header portion of the message
|
||||
header_type&
|
||||
header_part()
|
||||
base()
|
||||
{
|
||||
return *this;
|
||||
}
|
||||
|
Reference in New Issue
Block a user