$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r50064 - trunk/boost/function
From: john_at_[hidden]
Date: 2008-12-02 05:10:47
Author: johnmaddock
Date: 2008-12-02 05:10:46 EST (Tue, 02 Dec 2008)
New Revision: 50064
URL: http://svn.boost.org/trac/boost/changeset/50064
Log:
Fix -Wundef warning and suspect usage of BOOST_STRICT_CONFIG.
Text files modified: 
   trunk/boost/function/function_fwd.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/function/function_fwd.hpp
==============================================================================
--- trunk/boost/function/function_fwd.hpp	(original)
+++ trunk/boost/function/function_fwd.hpp	2008-12-02 05:10:46 EST (Tue, 02 Dec 2008)
@@ -21,7 +21,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