Allowing the empty %template directive, such as

%template() std::vector<int>;

to process the class "typedef"s and "typemap"s. Before
only the internal "typedef"s were processed.


git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@5750 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2004-03-17 08:18:17 +00:00
commit eae815451e
3 changed files with 27 additions and 4 deletions

View file

@ -1738,7 +1738,7 @@ public:
b = First(baselist);
while (b.item) {
String *bname = Getattr(b.item, "python:proxy");
if (!bname) {
if (!bname || Getattr(b.item,"feature:ignore")) {
b = Next(b);
continue;
}