Update documentation

This commit is contained in:
Peter Dimov
2020-01-23 21:17:49 +02:00
parent 719c43316f
commit 308bd731a5
2 changed files with 4 additions and 3 deletions

View File

@ -13,7 +13,10 @@ http://www.boost.org/LICENSE_1_0.txt
## Changes in 1.73.0
* Added support for `std::hash`, `boost::hash`
* Added support for `std::hash`, `boost::hash`.
* `variant<T...>` is now trivial when all types in `T...` are trivial.
This improves performance by enabling it to be passed to, and returned
from, functions in registers.
## Changes in 1.71.0

View File

@ -169,8 +169,6 @@ The main differences between this implementation and `std::variant` are:
`variant<int, float>` is provided as the member function `subset<U...>`.
(This operation can throw if the current state of the variant cannot be
represented.)
* `variant<T...>` is not (yet) trivial when all contained types are trivial,
as mandated by {cpp}17.
* The {cpp}20 additions and changes to `std::variant` have not yet been
implemented.