From 821e6d34ddfe7fdce3f9a50b5f398ce70201b4ea Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 2 Dec 2008 10:10:46 +0000 Subject: [PATCH] Fix -Wundef warning and suspect usage of BOOST_STRICT_CONFIG. [SVN r50064] --- include/boost/function/function_fwd.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/function/function_fwd.hpp b/include/boost/function/function_fwd.hpp index d2f713a..fb318c9 100644 --- a/include/boost/function/function_fwd.hpp +++ b/include/boost/function/function_fwd.hpp @@ -21,7 +21,7 @@ namespace boost { namespace python { namespace objects { #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