mirror of
https://github.com/boostorg/optional.git
synced 2025-07-29 12:07:21 +02:00
release notes
This commit is contained in:
@ -13,7 +13,9 @@
|
|||||||
|
|
||||||
[heading Boost Release 1.63]
|
[heading Boost Release 1.63]
|
||||||
* Added two new in-place constructors. They work similarly to `emplace()` functions: they initialize the contained value by perfect-forwarding the obtained arguments. One constructor always initializes the contained value, the other based on a boolean condition.
|
* Added two new in-place constructors. They work similarly to `emplace()` functions: they initialize the contained value by perfect-forwarding the obtained arguments. One constructor always initializes the contained value, the other based on a boolean condition.
|
||||||
|
* Syntax `o = {}` now correctly un-initializes optional, just like in `std::optional`.
|
||||||
* Fixed [@https://svn.boost.org/trac/boost/ticket/12203 Trac #12203].
|
* Fixed [@https://svn.boost.org/trac/boost/ticket/12203 Trac #12203].
|
||||||
|
* Fixed [@https://svn.boost.org/trac/boost/ticket/12563 Trac #12563].
|
||||||
|
|
||||||
|
|
||||||
[heading Boost Release 1.62]
|
[heading Boost Release 1.62]
|
||||||
|
@ -38,9 +38,17 @@
|
|||||||
obtained arguments. One constructor always initializes the contained value,
|
obtained arguments. One constructor always initializes the contained value,
|
||||||
the other based on a boolean condition.
|
the other based on a boolean condition.
|
||||||
</li>
|
</li>
|
||||||
|
<li class="listitem">
|
||||||
|
Syntax <code class="computeroutput"><span class="identifier">o</span> <span class="special">=</span>
|
||||||
|
<span class="special">{}</span></code> now correctly un-initializes
|
||||||
|
optional, just like in <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">optional</span></code>.
|
||||||
|
</li>
|
||||||
<li class="listitem">
|
<li class="listitem">
|
||||||
Fixed <a href="https://svn.boost.org/trac/boost/ticket/12203" target="_top">Trac #12203</a>.
|
Fixed <a href="https://svn.boost.org/trac/boost/ticket/12203" target="_top">Trac #12203</a>.
|
||||||
</li>
|
</li>
|
||||||
|
<li class="listitem">
|
||||||
|
Fixed <a href="https://svn.boost.org/trac/boost/ticket/12563" target="_top">Trac #12563</a>.
|
||||||
|
</li>
|
||||||
</ul></div>
|
</ul></div>
|
||||||
<h4>
|
<h4>
|
||||||
<a name="boost_optional.relnotes.h1"></a>
|
<a name="boost_optional.relnotes.h1"></a>
|
||||||
|
@ -145,7 +145,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||||
<td align="left"><p><small>Last revised: November 06, 2016 at 00:39:48 GMT</small></p></td>
|
<td align="left"><p><small>Last revised: November 24, 2016 at 22:27:48 GMT</small></p></td>
|
||||||
<td align="right"><div class="copyright-footer"></div></td>
|
<td align="right"><div class="copyright-footer"></div></td>
|
||||||
</tr></table>
|
</tr></table>
|
||||||
<hr>
|
<hr>
|
||||||
|
Reference in New Issue
Block a user