Removed varin typemaps for SWIGTYPE[] (dimensionless arrays).

These were useless as they just produced a setter that gave a runtime error.
Exposes some missing varin SWIGTYPE[ANY] typemaps - they show up in the test-suite.


git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4843 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2003-06-01 22:59:10 +00:00
commit a951a86659
5 changed files with 2 additions and 17 deletions

View file

@ -295,11 +295,6 @@
}
#endif
%typemap(varin) SWIGTYPE [] {
PyErr_SetString(PyExc_TypeError, "Variable $name is read-only.");
return 1;
}
%typemap(varin) SWIGTYPE [ANY] {
void *temp;
int ii;