fix std::vector<A*>

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@5840 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2004-04-07 00:55:15 +00:00
commit 427c969c60

View file

@ -156,7 +156,9 @@ namespace swigpy {
int res = (SWIG_ConvertPtr(obj, (void**)&p, type_info<Type>(), 0) != -1)
? SWIG_OLDOBJ : 0;
if (res) {
if (val) *val = p;
if (val) {
*val = p;
}
} else {
PyErr_Format(PyExc_TypeError, "a '%s *' is expected",
type_name<Type>());
@ -246,8 +248,8 @@ namespace swigpy {
template <class Type>
struct traits_as<Type, pointer_category> {
static Type as(PyObject *obj, bool throw_error) {
Type *v = 0;
int res = (obj ? asptr(obj, &v) : 0) && v;
Type *v = 0;
int res = (obj ? traits_asptr<Type>::asptr(obj, &v) : 0) && v;
if (res) {
if (res == SWIG_NEWOBJ) {
Type r(*v);
@ -270,6 +272,27 @@ namespace swigpy {
}
}
};
template <class Type>
struct traits_as<Type*, pointer_category> {
static Type* as(PyObject *obj, bool throw_error) {
Type *v = 0;
int res = (obj ? traits_asptr<Type>::asptr(obj, &v) : 0) && v;
if (res) {
return v;
} else {
// Uninitialized return value, no Type() constructor required.
std::string msg = "a value of type '";
msg += swigpy::type_name<Type>();
msg += "' is expected";
if (!PyErr_Occurred()) {
PyErr_SetString(PyExc_TypeError, msg.c_str());
}
if (throw_error) throw std::invalid_argument(msg);
return 0;
}
}
};
template <class Type>
inline Type as(PyObject *obj, bool te = false) {