From c1f8ae662f07038ffc156f657a7e99707a350b8f Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Tue, 9 Jul 2002 10:27:18 +0000 Subject: [PATCH] Added missing typename [SVN r14367] --- include/boost/python/converter/return_from_python.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/python/converter/return_from_python.hpp b/include/boost/python/converter/return_from_python.hpp index 85fd3671..9bfca7ec 100755 --- a/include/boost/python/converter/return_from_python.hpp +++ b/include/boost/python/converter/return_from_python.hpp @@ -37,7 +37,7 @@ namespace detail template struct return_rvalue_from_python { - typedef call_traits::param_type result_type; + typedef typename call_traits::param_type result_type; return_rvalue_from_python(); result_type operator()(PyObject*); private: