From 59f4ddf5af1669989eb533f2bcc4265a3bdb0ab4 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Mon, 13 May 2002 16:30:09 +0000 Subject: [PATCH] Work around MSVC6 bug [SVN r13836] --- include/boost/python/class_fwd.hpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/boost/python/class_fwd.hpp b/include/boost/python/class_fwd.hpp index d88ec271..87f3ba32 100644 --- a/include/boost/python/class_fwd.hpp +++ b/include/boost/python/class_fwd.hpp @@ -18,9 +18,10 @@ namespace detail template < class T // class being wrapped - , class X1 = detail::not_specified - , class X2 = detail::not_specified - , class X3 = detail::not_specified + // arbitrarily-ordered optional arguments. Full qualification needed for MSVC6 + , class X1 = ::boost::python::detail::not_specified + , class X2 = ::boost::python::detail::not_specified + , class X3 = ::boost::python::detail::not_specified > class class_;