Rename to message::base (API Change):

Actions Required:

* Change calls to message::header_part() with message::base()
This commit is contained in:
Vinnie Falco
2017-06-27 20:38:01 -07:00
parent 7abe6f6e09
commit 3c4ae2a098
2 changed files with 10 additions and 2 deletions

View File

@@ -2,6 +2,14 @@ Version 70:
* Serialize in one step when possible * 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: Version 69:

View File

@@ -489,14 +489,14 @@ struct message : header<isRequest, Fields>
/// Returns the header portion of the message /// Returns the header portion of the message
header_type const& header_type const&
header_part() const base() const
{ {
return *this; return *this;
} }
/// Returns the header portion of the message /// Returns the header portion of the message
header_type& header_type&
header_part() base()
{ {
return *this; return *this;
} }