Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r77543 - in trunk/libs/utility/doc: . html
From: vicente.botet_at_[hidden]
Date: 2012-03-25 14:28:26


Author: viboes
Date: 2012-03-25 14:28:24 EDT (Sun, 25 Mar 2012)
New Revision: 77543
URL: http://svn.boost.org/trac/boost/changeset/77543

Log:
Utility: Added doc for Adding noexcept to boost::declval
Text files modified:
   trunk/libs/utility/doc/declval.qbk | 23 +++++++++++++++++------
   trunk/libs/utility/doc/html/declval.html | 35 ++++++++++++++++++++++++-----------
   2 files changed, 41 insertions(+), 17 deletions(-)

Modified: trunk/libs/utility/doc/declval.qbk
==============================================================================
--- trunk/libs/utility/doc/declval.qbk (original)
+++ trunk/libs/utility/doc/declval.qbk 2012-03-25 14:28:24 EDT (Sun, 25 Mar 2012)
@@ -1,7 +1,6 @@
 [/
  / Copyright (c) 2008 Howard Hinnant
- / Copyright (c) 2008 Beman Dawes
- / Copyright (c) 2009-20010 Vicente J. Botet Escriba
+ / Copyright (c) 2009-20012 Vicente J. Botet Escriba
  /
  / Distributed under the Boost Software License, Version 1.0. (See accompanying
  / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
@@ -10,11 +9,9 @@
 [article Declval
     [quickbook 1.5]
     [authors [Hinnant, Howard]]
- [authors [Dawes, Beman]]
     [authors [Botet Escriba, Vicente J.]]
     [copyright 2008 Howard Hinnant]
- [copyright 2008 Beman Dawes]
- [copyright 2009-2010 Vicente J. Botet Escriba]
+ [copyright 2009-2012 Vicente J. Botet Escriba]
     [license
         Distributed under the Boost Software License, Version 1.0.
         (See accompanying file LICENSE_1_0.txt or copy at
@@ -77,7 +74,7 @@
     namespace boost {
 
         template <typename T>
- typename add_rvalue_reference<T>::type declval(); //noexcept; // as unevaluated operand
+ typename add_rvalue_reference<T>::type declval() noexcept; // as unevaluated operand
 
     } // namespace boost
 
@@ -100,5 +97,19 @@
 
 [endsect]
 
+[/===============]
+[section History]
+[/===============]
+
+[heading boost 1.50]
+
+New Features:
+
+* [@http://svn.boost.org/trac/boost/ticket/6570 #6570] Adding noexcept to boost::declval.
+
+
+[endsect]
+
+
 
 

Modified: trunk/libs/utility/doc/html/declval.html
==============================================================================
--- trunk/libs/utility/doc/html/declval.html (original)
+++ trunk/libs/utility/doc/html/declval.html 2012-03-25 14:28:24 EDT (Sun, 25 Mar 2012)
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
 <title>Declval</title>
 <link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.76.0">
 <link rel="home" href="declval.html" title="Declval">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -27,17 +27,13 @@
 <span class="firstname">Howard</span> <span class="surname">Hinnant</span>
 </h3></div>
 <div class="author"><h3 class="author">
-<span class="firstname">Beman</span> <span class="surname">Dawes</span>
-</h3></div>
-<div class="author"><h3 class="author">
 <span class="firstname">Vicente J.</span> <span class="surname">Botet Escriba</span>
 </h3></div>
 </div></div>
 <div><p class="copyright">Copyright &#169; 2008 Howard Hinnant</p></div>
-<div><p class="copyright">Copyright &#169; 2008 Beman Dawes</p></div>
-<div><p class="copyright">Copyright &#169; 2009, 2010 Vicente J. Botet Escriba</p></div>
+<div><p class="copyright">Copyright &#169; 2009 -2012 Vicente J. Botet Escriba</p></div>
 <div><div class="legalnotice">
-<a name="id3354293"></a><p>
+<a name="idp13456288"></a><p>
         Distributed under the Boost Software License, Version 1.0. (See accompanying
         file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
       </p>
@@ -50,9 +46,10 @@
 <dl>
 <dt><span class="section">Overview</span></dt>
 <dt><span class="section">Reference </span></dt>
+<dt><span class="section">History</span></dt>
 </dl>
 </div>
-<div class="section">
+<div class="section declval_overview">
 <div class="titlepage"><div><div><h2 class="title" style="clear: both">
 <a name="declval.overview"></a><a class="link" href="declval.html#declval.overview" title="Overview">Overview</a>
 </h2></div></div></div>
@@ -112,7 +109,7 @@
       is expected to be part of the daily tool-box of the C++0x programmer.
     </p>
 </div>
-<div class="section">
+<div class="section declval_reference">
 <div class="titlepage"><div><div><h2 class="title" style="clear: both">
 <a name="declval.reference"></a><a class="link" href="declval.html#declval.reference" title="Reference">Reference </a>
 </h2></div></div></div>
@@ -122,7 +119,7 @@
 <pre class="programlisting"><span class="keyword">namespace</span> <span class="identifier">boost</span> <span class="special">{</span>
 
     <span class="keyword">template</span> <span class="special">&lt;</span><span class="keyword">typename</span> <span class="identifier">T</span><span class="special">&gt;</span>
- <span class="keyword">typename</span> <span class="identifier">add_rvalue_reference</span><span class="special">&lt;</span><span class="identifier">T</span><span class="special">&gt;::</span><span class="identifier">type</span> <span class="identifier">declval</span><span class="special">();</span> <span class="comment">//noexcept; // as unevaluated operand
+ <span class="keyword">typename</span> <span class="identifier">add_rvalue_reference</span><span class="special">&lt;</span><span class="identifier">T</span><span class="special">&gt;::</span><span class="identifier">type</span> <span class="identifier">declval</span><span class="special">()</span> <span class="identifier">noexcept</span><span class="special">;</span> <span class="comment">// as unevaluated operand
 </span>
 <span class="special">}</span> <span class="comment">// namespace boost
 </span></pre>
@@ -152,9 +149,25 @@
       if the type From can be explicitly converted to type To.
     </p>
 </div>
+<div class="section declval_history">
+<div class="titlepage"><div><div><h2 class="title" style="clear: both">
+<a name="declval.history"></a><a class="link" href="declval.html#declval.history" title="History">History</a>
+</h2></div></div></div>
+<a name="declval.history.boost_1_50"></a><h4>
+<a name="idp13559952"></a>
+ <a class="link" href="declval.html#declval.history.boost_1_50">boost 1.50</a>
+ </h4>
+<p>
+ New Features:
+ </p>
+<div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem">
+ #6570
+ Adding noexcept to boost::declval.
+ </li></ul></div>
+</div>
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
-<td align="left"><p><small>Last revised: April 06, 2011 at 20:06:10 GMT</small></p></td>
+<td align="left"><p><small>Last revised: March 25, 2012 at 18:26:23 GMT</small></p></td>
 <td align="right"><div class="copyright-footer"></div></td>
 </tr></table>
 <hr>


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk