From 920125794ad1bc0c4e4ea2e98661049e296799a0 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Mon, 7 Oct 2002 19:23:08 +0000 Subject: [PATCH] Workaround GCC 3.x problem [SVN r15790] --- 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 882ce756..94d2dd31 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;