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;