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

instantiation hacks for tru64cxx6.5

[SVN r13265]
This commit is contained in:
Dave Abrahams
2002-03-24 21:31:21 +00:00
parent 6004a35e23
commit 8d88a92fe4
5 changed files with 29 additions and 24 deletions

View File

@@ -160,7 +160,7 @@ struct pointer_holder_back_reference : instance_holder
// Forward construction to the held object
pointer_holder_back_reference(PyObject* p)
: m_p(new held_type(p)) {
(void)instance_finder<held_type>::registration;
void const* x = &instance_finder<held_type>::registration; (void)x;
}
template <class A1>
@@ -169,7 +169,7 @@ struct pointer_holder_back_reference : instance_holder
, (typename unwrap_reference<A1>::type&)(a1)
))
{
(void)instance_finder<held_type>::registration;
void const* x = &instance_finder<held_type>::registration; (void)x;
}
@@ -180,7 +180,7 @@ struct pointer_holder_back_reference : instance_holder
, (typename unwrap_reference<A2>::type&)(a2)
))
{
(void)instance_finder<held_type>::registration;
void const* x = &instance_finder<held_type>::registration; (void)x;
}
@@ -192,7 +192,7 @@ struct pointer_holder_back_reference : instance_holder
, (typename unwrap_reference<A3>::type&)(a3)
))
{
(void)instance_finder<held_type>::registration;
void const* x = &instance_finder<held_type>::registration; (void)x;
}
@@ -205,7 +205,7 @@ struct pointer_holder_back_reference : instance_holder
, (typename unwrap_reference<A4>::type&)(a4)
))
{
(void)instance_finder<held_type>::registration;
void const* x = &instance_finder<held_type>::registration; (void)x;
}
@@ -218,7 +218,7 @@ struct pointer_holder_back_reference : instance_holder
, (typename unwrap_reference<A4>::type&)(a4)
, (typename unwrap_reference<A5>::type&)(a5)
)) {
(void)instance_finder<held_type>::registration;
void const* x = &instance_finder<held_type>::registration; (void)x;
}
@@ -232,7 +232,7 @@ struct pointer_holder_back_reference : instance_holder
, (typename unwrap_reference<A5>::type&)(a5)
, (typename unwrap_reference<A6>::type&)(a6)
)) {
(void)instance_finder<held_type>::registration;
void const* x = &instance_finder<held_type>::registration; (void)x;
}
@@ -248,7 +248,7 @@ struct pointer_holder_back_reference : instance_holder
, (typename unwrap_reference<A7>::type&)(a7)
))
{
(void)instance_finder<held_type>::registration;
void const* x = &instance_finder<held_type>::registration; (void)x;
}
@@ -265,7 +265,7 @@ struct pointer_holder_back_reference : instance_holder
, (typename unwrap_reference<A8>::type&)(a8)
))
{
(void)instance_finder<held_type>::registration;
void const* x = &instance_finder<held_type>::registration; (void)x;
}
@@ -283,7 +283,7 @@ struct pointer_holder_back_reference : instance_holder
, (typename unwrap_reference<A9>::type&)(a9)
))
{
(void)instance_finder<held_type>::registration;
void const* x = &instance_finder<held_type>::registration; (void)x;
}
@@ -302,7 +302,7 @@ struct pointer_holder_back_reference : instance_holder
, (typename unwrap_reference<A10>::type&)(a10)
))
{
(void)instance_finder<held_type>::registration;
void const* x = &instance_finder<held_type>::registration; (void)x;
}