2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-24 18:12:43 +00:00

gen_extclass.py: "T" replaced by "Held" to reduce chances of name clashes.

[SVN r9384]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2001-03-03 02:45:39 +00:00
parent 0106f7361a
commit b266b2b1ed

View File

@@ -61,7 +61,7 @@ T* check_non_null(T* p)
return p;
}
template <class T> class held_instance;
template <class Held> class held_instance;
typedef void* (*conversion_function_ptr)(void*);
@@ -617,7 +617,7 @@ template <class Held>
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 <class A1>