From 220734ccac0790808bb5490d77531627540ff233 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Thu, 20 Jun 2002 02:53:25 +0000 Subject: [PATCH] workaround for IRIX CC (EDG238) bug; move to namespace boost::python::api [SVN r14193] --- include/boost/python/object.hpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/include/boost/python/object.hpp b/include/boost/python/object.hpp index 5186669e..c7a25b66 100755 --- a/include/boost/python/object.hpp +++ b/include/boost/python/object.hpp @@ -11,11 +11,14 @@ # include # include -namespace boost { namespace python { +namespace boost { namespace python { namespace api { class string; -class type; +class type_object; -}} // namespace boost::python +template +type_object type(T const&); + +}}} // namespace boost::python::api #endif // OBJECT_DWA2002612_HPP