From 70e2cbd5a62a5b484b0962ea461284089d4ec000 Mon Sep 17 00:00:00 2001 From: Marcelo Matus Date: Sat, 3 Apr 2004 08:41:41 +0000 Subject: [PATCH] move simple template test outside git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@5826 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/Examples/test-suite/python/lib_std_map.i | 26 ------------------- 1 file changed, 26 deletions(-) diff --git a/SWIG/Examples/test-suite/python/lib_std_map.i b/SWIG/Examples/test-suite/python/lib_std_map.i index e33c59e3b..0cb84dbcf 100644 --- a/SWIG/Examples/test-suite/python/lib_std_map.i +++ b/SWIG/Examples/test-suite/python/lib_std_map.i @@ -41,30 +41,4 @@ std::map m_identa(const std::map& v) -%inline %{ - struct C{}; - typedef C* pC; - - template - struct Test - { - Test (A a, B b) - { - } - - }; - - - template - struct Test - { - Test (A a, B* b) - { - } - - }; -%} - - -%template(test_pC) Test;