File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -84,15 +84,15 @@ namespace detail
8484 // the type of holder that must be created. The 3rd argument is a
8585 // reference to the Python type object to be created.
8686 template <class T , class SelectHolder >
87- inline void register_class_to_python (mpl::true_ copyable , SelectHolder selector , T* = 0 )
87+ inline void register_class_to_python (mpl::true_, SelectHolder, T* = 0 )
8888 {
8989 typedef typename SelectHolder::type holder;
9090 force_instantiate (objects::class_cref_wrapper<T, objects::make_instance<T,holder> >());
9191 SelectHolder::register_ ();
9292 }
9393
9494 template <class T , class SelectHolder >
95- inline void register_class_to_python (mpl::false_ copyable , SelectHolder selector , T* = 0 )
95+ inline void register_class_to_python (mpl::false_, SelectHolder, T* = 0 )
9696 {
9797 SelectHolder::register_ ();
9898 }
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ template <>
4747struct value_destroyer <true ,true >
4848{
4949 template <class T >
50- static void execute (T const volatile * p )
50+ static void execute (T const volatile *)
5151 {
5252 }
5353};
@@ -56,7 +56,7 @@ template <>
5656struct value_destroyer <false ,true >
5757{
5858 template <class T >
59- static void execute (T const volatile * p )
59+ static void execute (T const volatile *)
6060 {
6161 }
6262};
You can’t perform that action at this time.
0 commit comments