id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 1197,patch: boost/function/function_base.hpp fails to compile with gcc -Wundef if BOOST_STRICT_CONFIG is not defined,andyc@…,Douglas Gregor,"With gcc -Wundef, we get a compile error: .../boost/function/function_base.hpp:62:7: warning: ""BOOST_STRICT_CONFIG"" is not defined The following patch fixes it: {{{ ===== boost/function/function_base.hpp 1.1 vs edited ===== --- 1.1/boost/function/function_base.hpp 2007-08-17 11:57:51 +01:00 +++ edited/boost/function/function_base.hpp 2007-08-21 10:52:10 +01:00 @@ -59,7 +59,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 }}} ",Bugs,closed,To Be Determined,function,Boost 1.34.1,Problem,fixed,,