From 4d7b6fe92a4d4a30eb5b8c522db94b0e852e2253 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ullrich=20K=C3=B6the?= Date: Wed, 22 Nov 2000 18:16:22 +0000 Subject: [PATCH] renamed make_ptr() into make_ref() renamed Signature* into signature* [SVN r8303] --- class_wrapper.h | 2 +- init_function.h | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/class_wrapper.h b/class_wrapper.h index f006aa50..f378a6f6 100644 --- a/class_wrapper.h +++ b/class_wrapper.h @@ -13,7 +13,7 @@ namespace python { // Syntactic sugar to make wrapping classes more convenient template > class class_builder - : PyExtensionClassConverters // Works around MSVC6.x/GCC2.95.2 bug described below + : python_extension_class_converters // Works around MSVC6.x/GCC2.95.2 bug described below { public: class_builder(module_builder& module, const char* name) diff --git a/init_function.h b/init_function.h index 5353031b..14da7842 100644 --- a/init_function.h +++ b/init_function.h @@ -164,7 +164,7 @@ struct init_function } template - static init* create(Signature6) { + static init* create(signature6) { return new Init6::const_reference, detail::parameter_traits::const_reference, @@ -175,7 +175,7 @@ struct init_function } template - static init* create(Signature7) { + static init* create(signature7) { return new Init7::const_reference, detail::parameter_traits::const_reference, @@ -187,7 +187,7 @@ struct init_function } template - static init* create(Signature8) { + static init* create(signature8) { return new Init8::const_reference, detail::parameter_traits::const_reference, @@ -200,7 +200,7 @@ struct init_function } template - static init* create(Signature9) { + static init* create(signature9) { return new Init9::const_reference, detail::parameter_traits::const_reference, @@ -214,7 +214,7 @@ struct init_function } template - static init* create(Signature10) { + static init* create(signature10) { return new Init10::const_reference, detail::parameter_traits::const_reference,