Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r86280 - trunk/boost/function_types/detail
From: steveire_at_[hidden]
Date: 2013-10-13 04:15:49


Author: skelly
Date: 2013-10-13 04:15:49 EDT (Sun, 13 Oct 2013)
New Revision: 86280
URL: http://svn.boost.org/trac/boost/changeset/86280

Log:
Fix workaround ifdef.

Text files modified:
   trunk/boost/function_types/detail/cv_traits.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/boost/function_types/detail/cv_traits.hpp
==============================================================================
--- trunk/boost/function_types/detail/cv_traits.hpp Sat Oct 12 19:54:37 2013 (r86279)
+++ trunk/boost/function_types/detail/cv_traits.hpp 2013-10-13 04:15:49 EDT (Sun, 13 Oct 2013) (r86280)
@@ -22,7 +22,7 @@
 
 namespace boost { namespace function_types { namespace detail {
 
-#if BOOST_WORKAROUND(__BORLANDC__, <= 0x582))
+#if !BOOST_WORKAROUND(__BORLANDC__, <= 0x582)
 
 template<typename T> struct cv_traits
 { typedef non_cv tag; typedef T type; };


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