From 8e779193bf8723b5c19a1aacbac6054ddcb7bacc Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Sat, 26 Jun 2010 22:43:21 +0000 Subject: [PATCH] Warning suppression for explicit template instantiations git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2009-matevz@12153 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Examples/test-suite/cpp0x_template_explicit.i | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Examples/test-suite/cpp0x_template_explicit.i b/Examples/test-suite/cpp0x_template_explicit.i index f05bcf850..644a03e89 100644 --- a/Examples/test-suite/cpp0x_template_explicit.i +++ b/Examples/test-suite/cpp0x_template_explicit.i @@ -3,16 +3,16 @@ using the translation unit). */ %module cpp0x_template_explicit -%warnfilter(320) std::vector; -%warnfilter(320) std::vector; + +#pragma SWIG nowarn=SWIGWARN_PARSE_EXPLICIT_TEMPLATE %inline %{ #include class A { public: - int member; - int memberFunction() { return 100; } + int member; + int memberFunction() { return 100; } }; template class std::vector;