multiple inheritance fix workaround for C#

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@5342 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2003-11-18 22:55:23 +00:00
commit f32aca08f1

View file

@ -2,6 +2,10 @@
%warnfilter(813,833) C; /* C#, Java multiple inheritance */
#ifdef SWIGCSHARP
%ignore B::bar; // otherwise get a warning: `C.bar' no suitable methods found to override
#endif
%contract test_preassert(int a, int b) {
require:
a > 0;