From b266b2b1ed0cb3d3d66d0e8ba27ee322be8b40cb Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Sat, 3 Mar 2001 02:45:39 +0000 Subject: [PATCH] gen_extclass.py: "T" replaced by "Held" to reduce chances of name clashes. [SVN r9384] --- include/boost/python/detail/extension_class.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/python/detail/extension_class.hpp b/include/boost/python/detail/extension_class.hpp index 6b3eb470..bf43ec5c 100644 --- a/include/boost/python/detail/extension_class.hpp +++ b/include/boost/python/detail/extension_class.hpp @@ -61,7 +61,7 @@ T* check_non_null(T* p) return p; } -template class held_instance; +template class held_instance; typedef void* (*conversion_function_ptr)(void*); @@ -617,7 +617,7 @@ template class held_instance : public Held { // There are no member functions: we want to avoid inadvertently overriding - // any virtual functions in T. + // any virtual functions in Held. public: held_instance(PyObject*) : Held() {} template