From 8a956bcdf63cfc329732e0bc67609e0149d88f87 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Wed, 27 Feb 2002 21:12:52 +0000 Subject: [PATCH] missing typename fix [SVN r12960] --- include/boost/python/converter/from_python.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/python/converter/from_python.hpp b/include/boost/python/converter/from_python.hpp index 0881a06a..4fe240ce 100644 --- a/include/boost/python/converter/from_python.hpp +++ b/include/boost/python/converter/from_python.hpp @@ -40,7 +40,7 @@ struct pointer_const_reference_from_python bool convertible() const; private: - detail::referent_storage::type m_result; + typename detail::referent_storage::type m_result; static lvalue_from_python_registration*& chain; };