From ee6e678c95e2811401f44c5d62232ce9039b5198 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Mon, 7 Oct 2002 20:13:00 +0000 Subject: [PATCH] Workaround GCC 3.x problem [SVN r15791] --- include/boost/python/init.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/python/init.hpp b/include/boost/python/init.hpp index 589f8ac0..1cbefb41 100644 --- a/include/boost/python/init.hpp +++ b/include/boost/python/init.hpp @@ -270,13 +270,13 @@ class init : public init_base > typedef typename mpl::fold< required_args , mpl::list0<> - , mpl::push_front<> + , mpl::push_front >::type reversed_required; typedef typename mpl::fold< optional_args , reversed_required - , mpl::push_front<> + , mpl::push_front >::type reversed_args; // Count the maximum number of arguments @@ -310,7 +310,7 @@ namespace detail typedef typename mpl::fold< ReversedArgs , mpl::list0<> - , mpl::push_front<> + , mpl::push_front >::type args; typedef typename ClassT::holder_selector holder_selector_t;