2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-21 17:12:22 +00:00

template keyword required for Generator::apply instantiation

[SVN r20484]
This commit is contained in:
Raoul Gough
2003-10-24 18:46:08 +00:00
parent cbbc52e9d1
commit c9de2a660f

View File

@@ -176,7 +176,8 @@ namespace boost { namespace python { namespace indexing {
private:
typedef boost::shared_ptr<shared_proxy> pointer_impl;
typedef typename Generator::apply<pointer_impl>::type pointer_container;
typedef typename Generator::template apply<pointer_impl>::type
pointer_container;
typedef typename pointer_container::iterator pointer_iterator;
private: