From 37efd93725f3469fb56b6111ba94c222bb640acc Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Wed, 21 Aug 2002 05:42:21 +0000 Subject: [PATCH] Bug fix [SVN r15021] --- include/boost/python/detail/defaults_def.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/python/detail/defaults_def.hpp b/include/boost/python/detail/defaults_def.hpp index 16cdd55e..2b7f1375 100644 --- a/include/boost/python/detail/defaults_def.hpp +++ b/include/boost/python/detail/defaults_def.hpp @@ -144,7 +144,7 @@ namespace detail { BOOST_STATIC_ASSERT( (stubs_type::max_args + 1) <= boost::mpl::size::value); - typedef stubs_type::template gen gen_type; + typedef typename stubs_type::template gen gen_type; define_with_defaults_helper::def (name, gen_type(), holder, doc); }