From 80a3f470995b6e3ccf50b199c3a51061b56c30ce Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Tue, 21 Aug 2007 15:35:19 +0000 Subject: [PATCH] Committed patch to eliminate warnings with GCC's -Wundef. Fixes #1197 [SVN r38827] --- include/boost/function/function_base.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/function/function_base.hpp b/include/boost/function/function_base.hpp index e0935bf..238247b 100644 --- a/include/boost/function/function_base.hpp +++ b/include/boost/function/function_base.hpp @@ -67,7 +67,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