From fbbc1981cabf54cdb37b15c15b119365b009d578 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Fri, 15 Mar 2002 00:25:26 +0000 Subject: [PATCH] Bug fix (thanks, VC7!) [SVN r13200] --- include/boost/python/detail/member_function_cast.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/python/detail/member_function_cast.hpp b/include/boost/python/detail/member_function_cast.hpp index 3d965021..52718390 100644 --- a/include/boost/python/detail/member_function_cast.hpp +++ b/include/boost/python/detail/member_function_cast.hpp @@ -56,13 +56,13 @@ struct member_function_cast_impl } template - static cast_helper stage1(R (S::*)(A0,A1)) + static cast_helper stage1(R (S::*)(A0,A1)) { return cast_helper(); } template - static cast_helper stage1(R (S::*)(A0,A1,A2)) + static cast_helper stage1(R (S::*)(A0,A1,A2)) { return cast_helper(); }