Miscellaneous patches from users

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4654 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Luigi Ballabio 2003-04-02 07:41:56 +00:00
commit b416beb9e3
3 changed files with 8 additions and 6 deletions

View file

@ -204,7 +204,7 @@ namespace std{
}
else {
self->erase(first,end);
if (i+1 <= self->size())
if (i+1 <= int(self->size()))
{
first = self->begin();
for (int k=0;k<i;k++)

View file

@ -203,7 +203,7 @@ namespace std{
}
else {
self->erase(first,end);
if (i+1 <= self->size())
if (i+1 <= int(self->size()))
{
first = self->begin();
for (int k=0;k<i;k++)

View file

@ -121,7 +121,8 @@ namespace std {
Py_DECREF(o);
} else {
Py_DECREF(o);
throw SWIG_DIRECTOR_TYPE_MISMATCH("vector<" #T "> expected");
throw SWIG_DIRECTOR_TYPE_MISMATCH(
"vector<" #T "> expected");
}
}
} else if (SWIG_ConvertPtr($input,(void **) &v,
@ -306,8 +307,9 @@ namespace std {
if (j<0) j = size+j;
if (i<0) i = 0;
if (j>size) j = size;
std::vector<T > tmp(j-i);
std::copy(self->begin()+i,self->begin()+j,tmp.begin());
std::vector<T > tmp;
tmp.reserve(j-i);
tmp.insert(tmp.begin(),self->begin()+i,self->begin()+j);
return tmp;
}
void __setitem__(int i, const T& x) {
@ -902,7 +904,7 @@ namespace std {
specialize_std_vector(unsigned short,PyInt_Check,\
PyInt_AsLong,PyInt_FromLong);
specialize_std_vector(unsigned long,PyLong_Check,\
PyLong_AsUnsignedLong,PyLong_UnsignedLong);
PyLong_AsUnsignedLong,PyLong_FromUnsignedLong);
specialize_std_vector(double,SwigNumber_Check,\
SwigNumber_AsDouble,PyFloat_FromDouble);
specialize_std_vector(float,SwigNumber_Check,\