Fixed warning messages for preproc_5.i, template_extend1.i and
template_extend2.i test cases. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4354 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
7a603be159
commit
90c0608798
3 changed files with 11 additions and 0 deletions
|
|
@ -1,5 +1,10 @@
|
|||
%module preproc_5
|
||||
|
||||
%warnfilter(801) a; // Ruby, wrong constant name
|
||||
%warnfilter(801) b; // Ruby, wrong constant name
|
||||
%warnfilter(801) c; // Ruby, wrong constant name
|
||||
%warnfilter(801) d; // Ruby, wrong constant name
|
||||
|
||||
// Various preprocessor bits of nastiness.
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -2,6 +2,9 @@
|
|||
|
||||
%module template_extend1
|
||||
|
||||
%warnfilter(801) Baz<long>; // Ruby, wrong class name
|
||||
%warnfilter(801) Baz<double>; // Ruby, wrong class name
|
||||
|
||||
%{
|
||||
namespace Quux {
|
||||
template <class T> class Baz {};
|
||||
|
|
|
|||
|
|
@ -1,6 +1,9 @@
|
|||
// Another evil Luigi test
|
||||
%module template_extend2
|
||||
|
||||
%warnfilter(801) Baz<long>; // Ruby, wrong class name
|
||||
%warnfilter(801) Baz<double>; // Ruby, wrong class name
|
||||
|
||||
%{
|
||||
namespace Quux {
|
||||
template <class T> class Baz {};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue