Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r84335 - trunk/boost/log/utility/manipulators
From: andrey.semashev_at_[hidden]
Date: 2013-05-17 16:13:31


Author: andysem
Date: 2013-05-17 16:13:30 EDT (Fri, 17 May 2013)
New Revision: 84335
URL: http://svn.boost.org/trac/boost/changeset/84335

Log:
Corrected comments.
Text files modified:
   trunk/boost/log/utility/manipulators/add_value.hpp | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: trunk/boost/log/utility/manipulators/add_value.hpp
==============================================================================
--- trunk/boost/log/utility/manipulators/add_value.hpp (original)
+++ trunk/boost/log/utility/manipulators/add_value.hpp 2013-05-17 16:13:30 EDT (Fri, 17 May 2013)
@@ -111,7 +111,7 @@
     return add_value_manip< typename DescriptorT::value_type& >(DescriptorT::get_name(), value);
 }
 
-#else // !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
+#else // !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) && !(defined(BOOST_MSVC) && BOOST_MSVC <= 1600)
 
 template< typename T >
 inline add_value_manip< T const& > add_value(attribute_name const& name, T const& value)
@@ -126,7 +126,7 @@
     return add_value_manip< typename DescriptorT::value_type const& >(DescriptorT::get_name(), value);
 }
 
-#endif // !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
+#endif // !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) && !(defined(BOOST_MSVC) && BOOST_MSVC <= 1600)
 
 BOOST_LOG_CLOSE_NAMESPACE // namespace log
 


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