From c9de2a660ff49cd89fcb9f07ad0286ffa5001bd9 Mon Sep 17 00:00:00 2001 From: Raoul Gough Date: Fri, 24 Oct 2003 18:46:08 +0000 Subject: [PATCH] template keyword required for Generator::apply instantiation [SVN r20484] --- include/boost/python/suite/indexing/container_proxy.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/boost/python/suite/indexing/container_proxy.hpp b/include/boost/python/suite/indexing/container_proxy.hpp index 4b827c5b..1347460b 100755 --- a/include/boost/python/suite/indexing/container_proxy.hpp +++ b/include/boost/python/suite/indexing/container_proxy.hpp @@ -176,7 +176,8 @@ namespace boost { namespace python { namespace indexing { private: typedef boost::shared_ptr pointer_impl; - typedef typename Generator::apply::type pointer_container; + typedef typename Generator::template apply::type + pointer_container; typedef typename pointer_container::iterator pointer_iterator; private: