Boost logo

Boost-Commit :

From: asutton_at_[hidden]
Date: 2007-07-24 20:33:31


Author: asutton
Date: 2007-07-24 20:33:31 EDT (Tue, 24 Jul 2007)
New Revision: 7528
URL: http://svn.boost.org/trac/boost/changeset/7528

Log:
Minor changes

Text files modified:
   sandbox/boost_docs/trunk/libs/standard/doc/concepts/utilities/default_constructible.qbk | 11 ++++-------
   1 files changed, 4 insertions(+), 7 deletions(-)

Modified: sandbox/boost_docs/trunk/libs/standard/doc/concepts/utilities/default_constructible.qbk
==============================================================================
--- sandbox/boost_docs/trunk/libs/standard/doc/concepts/utilities/default_constructible.qbk (original)
+++ sandbox/boost_docs/trunk/libs/standard/doc/concepts/utilities/default_constructible.qbk 2007-07-24 20:33:31 EDT (Tue, 24 Jul 2007)
@@ -14,6 +14,9 @@
 type itself and the syntax used for construction. Objects that are not initialized
 to a default value have indeterminate value (i.e., uninitialized).
 
+[heading Refinement of]
+[StdDestructible]
+
 [heading Notation]
 The folllowing expressions are used in this document:
 [table
@@ -151,16 +154,10 @@
 is refined from the Destructible and `Constructible` concepts, which allows
 construction from any number of arguments. It is given as:
 
- // T is required to have a public destructor.
- auto concept Destructible<typename T>
- {
- T::~T();
- };
-
     // This concept requires that T be constructible with a variable number
     // of arguments. Constructible types are required to be Desctructible.
     auto concept Constructible<typename T, typename... Args>
- : Destructible<T>
+ : ``[StdDestructible]``<T>
     {
         T::T(Args...);
     };


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