Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r73857 - in sandbox/conversion/boost/conversion: . detail type_traits
From: vicente.botet_at_[hidden]
Date: 2011-08-17 17:38:12


Author: viboes
Date: 2011-08-17 17:38:10 EDT (Wed, 17 Aug 2011)
New Revision: 73857
URL: http://svn.boost.org/trac/boost/changeset/73857

Log:
conversion: update comments for doc
Text files modified:
   sandbox/conversion/boost/conversion/assign_to.hpp | 2 +-
   sandbox/conversion/boost/conversion/assignable_to.hpp | 2 +-
   sandbox/conversion/boost/conversion/convertible_to.hpp | 2 +-
   sandbox/conversion/boost/conversion/detail/is_extrinsically_assignable_tagged.hpp | 2 +-
   sandbox/conversion/boost/conversion/detail/is_extrinsically_convertible_tagged.hpp | 2 +-
   sandbox/conversion/boost/conversion/detail/is_extrinsically_explicit_convertible_or_fallback_tagged.hpp | 2 +-
   sandbox/conversion/boost/conversion/detail/is_extrinsically_explicit_convertible_tagged.hpp | 2 +-
   sandbox/conversion/boost/conversion/detail/is_extrinsically_try_assignable_tagged.hpp | 2 +-
   sandbox/conversion/boost/conversion/detail/is_extrinsically_try_convertible_tagged.hpp | 2 +-
   sandbox/conversion/boost/conversion/is_extrinsically_assignable.hpp | 2 +-
   sandbox/conversion/boost/conversion/is_extrinsically_convertible.hpp | 2 +-
   sandbox/conversion/boost/conversion/is_extrinsically_explicit_convertible.hpp | 2 +-
   sandbox/conversion/boost/conversion/type_traits/is_assignable.hpp | 2 +-
   sandbox/conversion/boost/conversion/type_traits/is_constructible.hpp | 2 +-
   sandbox/conversion/boost/conversion/type_traits/is_copy_assignable.hpp | 2 +-
   sandbox/conversion/boost/conversion/type_traits/is_destructible.hpp | 2 +-
   sandbox/conversion/boost/conversion/type_traits/is_explicitly_convertible.hpp | 2 +-
   17 files changed, 17 insertions(+), 17 deletions(-)

Modified: sandbox/conversion/boost/conversion/assign_to.hpp
==============================================================================
--- sandbox/conversion/boost/conversion/assign_to.hpp (original)
+++ sandbox/conversion/boost/conversion/assign_to.hpp 2011-08-17 17:38:10 EDT (Wed, 17 Aug 2011)
@@ -16,7 +16,7 @@
  * The function @c assign_to assigns the @c from parameter to the @c to parameter.
  *
  * The default behavior uses the assignment operator when the @c Target is assignable from the @c Source,
- * or makes an implicit conversion of the @ Source before assignment when the @c Source is
+ * or makes an implicit conversion of the @c Source before assignment when the @c Source is
  * implicitly convertible to @c Target.
  *
  * When the default behavior is not satisfactory or doesn't takes care of

Modified: sandbox/conversion/boost/conversion/assignable_to.hpp
==============================================================================
--- sandbox/conversion/boost/conversion/assignable_to.hpp (original)
+++ sandbox/conversion/boost/conversion/assignable_to.hpp 2011-08-17 17:38:10 EDT (Wed, 17 Aug 2011)
@@ -11,7 +11,7 @@
 
 /*!
  @file
- @brief Defines the free function @c assignable_to class and the factory @c lvalue.
+ @brief Defines the @c assignable_to class and the factory @c lvalue.
  */
 #ifndef BOOST_CONVERSION_ASSIGNABLE_TO_HPP
 #define BOOST_CONVERSION_ASSIGNABLE_TO_HPP

Modified: sandbox/conversion/boost/conversion/convertible_to.hpp
==============================================================================
--- sandbox/conversion/boost/conversion/convertible_to.hpp (original)
+++ sandbox/conversion/boost/conversion/convertible_to.hpp 2011-08-17 17:38:10 EDT (Wed, 17 Aug 2011)
@@ -33,7 +33,7 @@
     public:
 
       //! Constructor from a extrinsic implicitly convertible to @c Target.
- //! @Effects Store the extrinsic conversion from @c source to @ Target.
+ //! @Effects Store the extrinsic conversion from @c source to c@ Target.
       //! @Throws Whatever extrinsic implicit conversion from @c source to @c Target could throw.
       //! @Remark This constructor doesn't participates on overload resolution if @c Source is not extrinsic convertible to @c Target.
       template <typename Source>

Modified: sandbox/conversion/boost/conversion/detail/is_extrinsically_assignable_tagged.hpp
==============================================================================
--- sandbox/conversion/boost/conversion/detail/is_extrinsically_assignable_tagged.hpp (original)
+++ sandbox/conversion/boost/conversion/detail/is_extrinsically_assignable_tagged.hpp 2011-08-17 17:38:10 EDT (Wed, 17 Aug 2011)
@@ -33,7 +33,7 @@
     template <typename Target, typename Source>
     struct is_extrinsically_assignable_tagged {};
 
- //! Macro stating if the compiler doesn't support the features needed to define the @c is_extrinsically_assignable type trait for classes.
+ //! Macro defined if and only if the compiler doesn't support the features needed to define the @c is_extrinsically_assignable type trait for classes.
   #define BOOST_CONVERSION_NO_IS_EXTRINSIC_ASSIGNABLE_TAGGED
 
   }

Modified: sandbox/conversion/boost/conversion/detail/is_extrinsically_convertible_tagged.hpp
==============================================================================
--- sandbox/conversion/boost/conversion/detail/is_extrinsically_convertible_tagged.hpp (original)
+++ sandbox/conversion/boost/conversion/detail/is_extrinsically_convertible_tagged.hpp 2011-08-17 17:38:10 EDT (Wed, 17 Aug 2011)
@@ -33,7 +33,7 @@
     template <typename Source, typename Target>
     struct is_extrinsically_convertible_tagged {};
 
- //! Macro stating if the compiler doesn't support the features needed to define the @c is_extrinsically_convertible type trait for classes.
+ //! Macro defined if and only if the compiler doesn't support the features needed to define the @c is_extrinsically_convertible type trait for classes.
   #define BOOST_CONVERSION_NO_IS_EXTRINSIC_CONVERTIBLE_TAGGED
 
   }

Modified: sandbox/conversion/boost/conversion/detail/is_extrinsically_explicit_convertible_or_fallback_tagged.hpp
==============================================================================
--- sandbox/conversion/boost/conversion/detail/is_extrinsically_explicit_convertible_or_fallback_tagged.hpp (original)
+++ sandbox/conversion/boost/conversion/detail/is_extrinsically_explicit_convertible_or_fallback_tagged.hpp 2011-08-17 17:38:10 EDT (Wed, 17 Aug 2011)
@@ -34,7 +34,7 @@
     template <typename Source, typename Target>
     struct is_extrinsically_explicit_convertible_or_fallback_tagged {};
 
- //! Macro stating if the compiler doesn't support the features needed to define the @c is_extrinsically_explicit_convertible_or_fallback type trait for classes.
+ //! Macro defined if and only if the compiler doesn't support the features needed to define the @c is_extrinsically_explicit_convertible_or_fallback type trait for classes.
   #define BOOST_CONVERSION_NO_IS_EXTRINSIC_EXPLICIT_CONVERTIBLE_OR_FALLBACK_TAGGED
 
   }

Modified: sandbox/conversion/boost/conversion/detail/is_extrinsically_explicit_convertible_tagged.hpp
==============================================================================
--- sandbox/conversion/boost/conversion/detail/is_extrinsically_explicit_convertible_tagged.hpp (original)
+++ sandbox/conversion/boost/conversion/detail/is_extrinsically_explicit_convertible_tagged.hpp 2011-08-17 17:38:10 EDT (Wed, 17 Aug 2011)
@@ -34,7 +34,7 @@
     template <typename Source, typename Target>
     struct is_extrinsically_explicit_convertible_tagged {};
 
- //! Macro stating if the compiler doesn't support the features needed to define the @c is_extrinsically_explicit_convertible type trait for classes.
+ //! Macro defined if and only if the compiler doesn't support the features needed to define the @c is_extrinsically_explicit_convertible type trait for classes.
   #define BOOST_CONVERSION_NO_IS_EXTRINSIC_EXPLICIT_CONVERTIBLE_TAGGED
 
   }

Modified: sandbox/conversion/boost/conversion/detail/is_extrinsically_try_assignable_tagged.hpp
==============================================================================
--- sandbox/conversion/boost/conversion/detail/is_extrinsically_try_assignable_tagged.hpp (original)
+++ sandbox/conversion/boost/conversion/detail/is_extrinsically_try_assignable_tagged.hpp 2011-08-17 17:38:10 EDT (Wed, 17 Aug 2011)
@@ -33,7 +33,7 @@
     template <typename Source, typename Target>
     struct is_extrinsically_try_assignable_tagged {};
 
- //! Macro stating if the compiler doesn't support the features needed to define the @c is_extrinsically_try_assignable type trait for classes.
+ //! Macro defined if and only if the compiler doesn't support the features needed to define the @c is_extrinsically_try_assignable type trait for classes.
   #define BOOST_CONVERSION_NO_IS_EXTRINSIC_TRY_ASSIGNABLE_TAGGED
 
   }

Modified: sandbox/conversion/boost/conversion/detail/is_extrinsically_try_convertible_tagged.hpp
==============================================================================
--- sandbox/conversion/boost/conversion/detail/is_extrinsically_try_convertible_tagged.hpp (original)
+++ sandbox/conversion/boost/conversion/detail/is_extrinsically_try_convertible_tagged.hpp 2011-08-17 17:38:10 EDT (Wed, 17 Aug 2011)
@@ -34,7 +34,7 @@
     template <typename Source, typename Target>
     struct is_extrinsically_try_convertible_tagged {};
 
- //! Macro stating if the compiler doesn't support the features needed to define the @c is_extrinsically_try_convertible type trait for classes.
+ //! Macro defined if and only if the compiler doesn't support the features needed to define the @c is_extrinsically_try_convertible type trait for classes.
   #define BOOST_CONVERSION_NO_IS_EXTRINSIC_TRY_CONVERTIBLE_TAGGED
 
   }

Modified: sandbox/conversion/boost/conversion/is_extrinsically_assignable.hpp
==============================================================================
--- sandbox/conversion/boost/conversion/is_extrinsically_assignable.hpp (original)
+++ sandbox/conversion/boost/conversion/is_extrinsically_assignable.hpp 2011-08-17 17:38:10 EDT (Wed, 17 Aug 2011)
@@ -38,7 +38,7 @@
     template <typename Target, typename Source>
     struct is_extrinsically_assignable {};
 
- //! Macro stating if the compiler doesn't support the features needed to define the @c is_extrinsically_assignable type trait.
+ //! Macro defined if and only if the compiler doesn't support the features needed to define the @c is_extrinsically_assignable type trait.
     #define BOOST_CONVERSION_NO_IS_EXTRINSIC_ASSIGNABLE
 
   }

Modified: sandbox/conversion/boost/conversion/is_extrinsically_convertible.hpp
==============================================================================
--- sandbox/conversion/boost/conversion/is_extrinsically_convertible.hpp (original)
+++ sandbox/conversion/boost/conversion/is_extrinsically_convertible.hpp 2011-08-17 17:38:10 EDT (Wed, 17 Aug 2011)
@@ -37,7 +37,7 @@
     template <typename Source, typename Target>
     struct is_extrinsically_convertible {};
 
- //! Macro stating if the compiler doesn't support the features needed to define the @c is_extrinsically_convertible type trait for classes.
+ //! Macro defined if and only if the compiler doesn't support the features needed to define the @c is_extrinsically_convertible type trait for classes.
   #define BOOST_CONVERSION_NO_IS_EXTRINSIC_CONVERTIBLE
 
   }

Modified: sandbox/conversion/boost/conversion/is_extrinsically_explicit_convertible.hpp
==============================================================================
--- sandbox/conversion/boost/conversion/is_extrinsically_explicit_convertible.hpp (original)
+++ sandbox/conversion/boost/conversion/is_extrinsically_explicit_convertible.hpp 2011-08-17 17:38:10 EDT (Wed, 17 Aug 2011)
@@ -37,7 +37,7 @@
     template <class Source, class Target>
     struct is_extrinsically_explicit_convertible {};
 
- //! Macro stating if the compiler doesn't support the features needed to define the @c is_extrinsically_explicit_convertible type trait for classes.
+ //! Macro defined if and only if the compiler doesn't support the features needed to define the @c is_extrinsically_explicit_convertible type trait for classes.
   #define BOOST_CONVERSION_NO_IS_EXTRINSIC_EXPLICIT_CONVERTIBLE
 
   }

Modified: sandbox/conversion/boost/conversion/type_traits/is_assignable.hpp
==============================================================================
--- sandbox/conversion/boost/conversion/type_traits/is_assignable.hpp (original)
+++ sandbox/conversion/boost/conversion/type_traits/is_assignable.hpp 2011-08-17 17:38:10 EDT (Wed, 17 Aug 2011)
@@ -40,7 +40,7 @@
   struct is_assignable
   {};
 
- //! Macro stating if the compiler doesn't support the features needed to provide a valid implementation of @c is_assignable type trait.
+ //! Macro defined if and only if the compiler doesn't support the features needed to provide a valid implementation of @c is_assignable type trait.
   //! In this case the user needs to provide specific specializations.
   #define BOOST_CONVERSION_NO_IS_ASSIGNABLE
 }

Modified: sandbox/conversion/boost/conversion/type_traits/is_constructible.hpp
==============================================================================
--- sandbox/conversion/boost/conversion/type_traits/is_constructible.hpp (original)
+++ sandbox/conversion/boost/conversion/type_traits/is_constructible.hpp 2011-08-17 17:38:10 EDT (Wed, 17 Aug 2011)
@@ -46,7 +46,7 @@
   struct is_constructible
   {};
 
- //! Macro stating if the compiler doesn't support the features needed to define the @c is_constructible type trait.
+ //! Macro defined if and only if the compiler doesn't support the features needed to define the @c is_constructible type trait.
   #define BOOST_CONVERSION_NO_IS_CONSTRUCTIBLE
   //! Macro stating if the compiler doesn't support the features needed to define the @c is_default_constructible type trait.
   #define BOOST_CONVERSION_NO_IS_DEFAULT_CONSTRUCTIBLE

Modified: sandbox/conversion/boost/conversion/type_traits/is_copy_assignable.hpp
==============================================================================
--- sandbox/conversion/boost/conversion/type_traits/is_copy_assignable.hpp (original)
+++ sandbox/conversion/boost/conversion/type_traits/is_copy_assignable.hpp 2011-08-17 17:38:10 EDT (Wed, 17 Aug 2011)
@@ -40,7 +40,7 @@
   /**
    * @c is_copy_assignable specialization for reference types.
    *
- * Condition: references are always copy assignable.
+ * @Condition: references are always copy assignable.
    */
   template <typename T>
   struct is_copy_assignable<T&> : true_type {};

Modified: sandbox/conversion/boost/conversion/type_traits/is_destructible.hpp
==============================================================================
--- sandbox/conversion/boost/conversion/type_traits/is_destructible.hpp (original)
+++ sandbox/conversion/boost/conversion/type_traits/is_destructible.hpp 2011-08-17 17:38:10 EDT (Wed, 17 Aug 2011)
@@ -53,7 +53,7 @@
   struct is_destructible
   {};
 
- //! Macro stating if the compiler doesn't support the features needed to define the @c is_destructible type trait for classes.
+ //! Macro defined if and only if the compiler doesn't support the features needed to define the @c is_destructible type trait for classes.
   #define BOOST_CONVERSION_NO_IS_DESTRUCTIBLE
 
 }

Modified: sandbox/conversion/boost/conversion/type_traits/is_explicitly_convertible.hpp
==============================================================================
--- sandbox/conversion/boost/conversion/type_traits/is_explicitly_convertible.hpp (original)
+++ sandbox/conversion/boost/conversion/type_traits/is_explicitly_convertible.hpp 2011-08-17 17:38:10 EDT (Wed, 17 Aug 2011)
@@ -46,7 +46,7 @@
   struct is_explicitly_convertible
   {};
 
- //! Macro stating if the compiler doesn't support the features needed to define the @c is_explicitly_convertible type trait
+ //! Macro defined if and only if the compiler doesn't support the features needed to define the @c is_explicitly_convertible type trait
   //! using the @c static_cast version.
   //! In this case the trait is equivalent to @c is_constructible<Target,Source>.
 


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