Remove warnings in Octave testcase

This commit is contained in:
William S Fulton 2017-01-26 20:02:37 +00:00
commit a8e1862aca
2 changed files with 11 additions and 1 deletions

View file

@ -5,7 +5,12 @@
%warnfilter(SWIGWARN_LANG_IDENTIFIER);
#if defined(SWIGOCTAVE)
%warnfilter(SWIGWARN_IGNORE_OPERATOR_LSHIFT_MSG) operator<<;
%warnfilter(SWIGWARN_IGNORE_OPERATOR_RSHIFT_MSG) operator>>;
#endif
%inline
{

View file

@ -1,5 +1,10 @@
%module friends_template
#if defined(SWIGOCTAVE)
%warnfilter(SWIGWARN_IGNORE_OPERATOR_RSHIFT_MSG) operator>>;
#endif
%{
template <typename Type> class MyClass;