From ee5c4f08ea7a1ebd2ca33fe78553cf336cee696e Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Thu, 18 Sep 2003 19:16:18 +0000 Subject: [PATCH] Improved test to test parameters in static functions git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@5116 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/Examples/test-suite/cpp_static.i | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SWIG/Examples/test-suite/cpp_static.i b/SWIG/Examples/test-suite/cpp_static.i index 5009cf528..c68e986eb 100644 --- a/SWIG/Examples/test-suite/cpp_static.i +++ b/SWIG/Examples/test-suite/cpp_static.i @@ -15,6 +15,8 @@ public: class StaticFunctionTest { public: static void static_func() {}; + static void static_func_2(int param_1) {}; + static void static_func_3(int param_1, int param_2) {}; }; %}