Skip to content

Commit

Permalink
Added 1.86.0 release notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lastique committed Jul 24, 2024
1 parent 9e9e6e3 commit 76d0f22
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
12 changes: 11 additions & 1 deletion doc/changes.qbk
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,22 @@

[section Revision History]

[section Changes in 1.86.0]

* Added a [link core.pointer_in_range `boost/core/pointer_in_range.hpp`] header with a `pointer_in_range`
function template to check if a pointer is within a given range.
* Fixed `type_name` for abstract classes. ([github_issue 172])
* Fixed `boost/core/type_name.hpp` compilation error with MSVC with disabled native `wchar_t` type.
([github_issue 173])

[endsect]

[section Changes in 1.85.0]

* Added a new [link core.functor `boost/core/functor.hpp`] header with a `functor` class template
for wrapping a raw function into a function object class.
* Changed [link core.null_deleter `null_deleter`], [link core.fclose_deleter `fclose_deleter`]
and [link.checked_delete checked deleter] definitions so that they don't bring namespace `boost`
and [link core.checked_delete checked deleter] definitions so that they don't bring namespace `boost`
into argument-dependent lookup in cases like this:
```
std::unique_ptr< std::FILE, boost::fclose_deleter > p1, p2;
Expand Down
3 changes: 3 additions & 0 deletions doc/core.qbk
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ or copy at http://boost.org/LICENSE_1_0.txt)
]
]

[template github_issue[key]'''<ulink url="https://github.com/boostorg/core/issues/'''[key]'''">#'''[key]'''</ulink>''']
[template github_pr[key]'''<ulink url="https://github.com/boostorg/core/pull/'''[key]'''">PR#'''[key]'''</ulink>''']

[template simplesect[title]
[block '''<simplesect><title>'''[title]'''</title>''']]

Expand Down

0 comments on commit 76d0f22

Please sign in to comment.