When warning about multiple inheritance in C#, say C# in the message instead of Java
This commit is contained in:
parent
226b4dec5b
commit
7a050461c6
1 changed files with 1 additions and 1 deletions
|
|
@ -1642,7 +1642,7 @@ public:
|
||||||
String *proxyclassname = Getattr(n, "classtypeobj");
|
String *proxyclassname = Getattr(n, "classtypeobj");
|
||||||
String *baseclassname = Getattr(base.item, "name");
|
String *baseclassname = Getattr(base.item, "name");
|
||||||
Swig_warning(WARN_CSHARP_MULTIPLE_INHERITANCE, Getfile(n), Getline(n),
|
Swig_warning(WARN_CSHARP_MULTIPLE_INHERITANCE, Getfile(n), Getline(n),
|
||||||
"Warning for %s proxy: Base %s ignored. Multiple inheritance is not supported in Java.\n", SwigType_namestr(proxyclassname), SwigType_namestr(baseclassname));
|
"Warning for %s proxy: Base %s ignored. Multiple inheritance is not supported in C#.\n", SwigType_namestr(proxyclassname), SwigType_namestr(baseclassname));
|
||||||
base = Next(base);
|
base = Next(base);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue