fix ||, it should be &&
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8314 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
ec64b2ce0d
commit
ec22a90c85
1 changed files with 1 additions and 1 deletions
|
|
@ -1884,7 +1884,7 @@ SwigType_emit_type_table(File *f_forward, File *f_table) {
|
|||
if (SwigType_istemplate(rt)) {
|
||||
String *dt = Swig_symbol_template_deftype(rt, 0);
|
||||
String *dn = SwigType_lstr(dt,0);
|
||||
if (!Equal(dn,rn) || !Equal(dn,ln)) {
|
||||
if (!Equal(dn,rn) && !Equal(dn,ln)) {
|
||||
Printf(nt,"|%s",dn);
|
||||
}
|
||||
Delete(dt);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue