Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r83994 - in trunk/boost/log: detail sinks utility
From: andrey.semashev_at_[hidden]
Date: 2013-04-21 03:32:10


Author: andysem
Date: 2013-04-21 03:32:08 EDT (Sun, 21 Apr 2013)
New Revision: 83994
URL: http://svn.boost.org/trac/boost/changeset/83994

Log:
Removed more deprecated macros and worked around one more broken link in the generated docs.
Text files modified:
   trunk/boost/log/detail/light_function.hpp | 6 +++---
   trunk/boost/log/sinks/text_file_backend.hpp | 2 +-
   trunk/boost/log/utility/value_ref.hpp | 2 +-
   3 files changed, 5 insertions(+), 5 deletions(-)

Modified: trunk/boost/log/detail/light_function.hpp
==============================================================================
--- trunk/boost/log/detail/light_function.hpp (original)
+++ trunk/boost/log/detail/light_function.hpp 2013-04-21 03:32:08 EDT (Sun, 21 Apr 2013)
@@ -360,7 +360,7 @@
         ((this_type&)that).m_pImpl = NULL;
     }
 
-#if !defined(BOOST_NO_RVALUE_REFERENCES) && !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
+#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
     template< typename FunT >
     light_function(FunT&& fun) :
         m_pImpl(new impl< typename remove_cv< typename remove_reference< FunT >::type >::type >(boost::forward< FunT >(fun)))
@@ -464,13 +464,13 @@
     }
 };
 
-#else // !defined(BOOST_NO_VARIADIC_TEMPLATES) && !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
+#else // !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
 
 #define BOOST_PP_FILENAME_1 <boost/log/detail/light_function_pp.hpp>
 #define BOOST_PP_ITERATION_LIMITS (0, BOOST_LOG_LIGHT_FUNCTION_LIMIT)
 #include BOOST_PP_ITERATE()
 
-#endif // !defined(BOOST_NO_VARIADIC_TEMPLATES) && !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
+#endif // !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
 
 template< typename SignatureT >
 inline void swap(light_function< SignatureT >& left, light_function< SignatureT >& right)

Modified: trunk/boost/log/sinks/text_file_backend.hpp
==============================================================================
--- trunk/boost/log/sinks/text_file_backend.hpp (original)
+++ trunk/boost/log/sinks/text_file_backend.hpp 2013-04-21 03:32:08 EDT (Sun, 21 Apr 2013)
@@ -472,7 +472,7 @@
      *
      * The file scan can be performed in two ways: either all files in the target directory will
      * be considered as log files, or only those files that satisfy the file name pattern.
- * See documentation on <tt>file::collector::scan_for_files</tt> for more information.
+ * See documentation on <tt>sinks::file::collector::scan_for_files</tt> for more information.
      *
      * \pre File collector and the proper file name pattern have already been set.
      *

Modified: trunk/boost/log/utility/value_ref.hpp
==============================================================================
--- trunk/boost/log/utility/value_ref.hpp (original)
+++ trunk/boost/log/utility/value_ref.hpp 2013-04-21 03:32:08 EDT (Sun, 21 Apr 2013)
@@ -245,7 +245,7 @@
 
 protected:
     //! The metafunction tests if the type is compatible with the reference wrapper
-#if !defined(BOOST_NO_TEMPLATE_ALIASES) && !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES)
+#if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES)
     template< typename U >
     using is_compatible = mpl::contains< value_type, U >;
 #else


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