--- /software/boost-1.33.0/include/boost-1_33/boost/python/detail/wrapper_base.hpp 2004-07-27 09:08:53.000000000 +0200 +++ wrapper_base.hpp 2007-01-31 13:48:09.000000000 +0100 @@ -79,7 +79,7 @@ w->m_self = self; } - inline void initialize_wrapper(PyObject* self, ...) {} + inline void initialize_wrapper(PyObject* /* self */, ...) {} --- /software/boost-1.33.0/include/boost-1_33/boost/python/object/value_holder.hpp 2005-05-16 05:31:12.000000000 +0200 +++ value_holder.hpp 2007-01-31 13:44:00.000000000 +0100 @@ -48,7 +48,7 @@ # include BOOST_PP_ITERATE() private: // required holder implementation - void* holds(type_info, bool null_ptr_only); + void* holds(type_info, bool /* null_ptr_only */); template inline void* holds_wrapped(type_info dst_t, wrapper*,T* p) @@ -75,7 +75,7 @@ # include BOOST_PP_ITERATE() private: // required holder implementation - void* holds(type_info, bool null_ptr_only); + void* holds(type_info, bool /* null_ptr_only */); private: // data members Held m_held; @@ -84,7 +84,7 @@ # undef BOOST_PYTHON_UNFORWARD_LOCAL template -void* value_holder::holds(type_info dst_t, bool null_ptr_only) +void* value_holder::holds(type_info dst_t, bool /* null_ptr_only */) { if (void* wrapped = holds_wrapped(dst_t, &m_held, &m_held)) return wrapped; @@ -96,7 +96,7 @@ template void* value_holder_back_reference::holds( - type_info dst_t, bool null_ptr_only) + type_info dst_t, bool /* null_ptr_only */) { type_info src_t = python::type_id(); Value* x = &m_held;