Boost logo

Boost-Commit :

From: dgregor_at_[hidden]
Date: 2007-08-21 11:35:21


Author: dgregor
Date: 2007-08-21 11:35:19 EDT (Tue, 21 Aug 2007)
New Revision: 38827
URL: http://svn.boost.org/trac/boost/changeset/38827

Log:
Committed patch to eliminate warnings with GCC's -Wundef. Fixes #1197

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

Modified: trunk/boost/function/function_base.hpp
==============================================================================
--- trunk/boost/function/function_base.hpp (original)
+++ trunk/boost/function/function_base.hpp 2007-08-21 11:35:19 EDT (Tue, 21 Aug 2007)
@@ -67,7 +67,7 @@
 
 #if defined (BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) \
  || defined(BOOST_BCB_PARTIAL_SPECIALIZATION_BUG) \
- || !(BOOST_STRICT_CONFIG || !defined(__SUNPRO_CC) || __SUNPRO_CC > 0x540)
+ || !(defined(BOOST_STRICT_CONFIG) || !defined(__SUNPRO_CC) || __SUNPRO_CC > 0x540)
 # define BOOST_FUNCTION_NO_FUNCTION_TYPE_SYNTAX
 #endif
 


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