From 76089cb45d84c10f4152fa77e6607e3b03fd1655 Mon Sep 17 00:00:00 2001 From: Marcelo Matus Date: Thu, 16 Feb 2006 06:00:08 +0000 Subject: [PATCH] fix copyctor + template bug #1432125 git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8824 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/Examples/test-suite/constructor_copy.i | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/SWIG/Examples/test-suite/constructor_copy.i b/SWIG/Examples/test-suite/constructor_copy.i index e389cb56d..e0b6e2b75 100644 --- a/SWIG/Examples/test-suite/constructor_copy.i +++ b/SWIG/Examples/test-suite/constructor_copy.i @@ -84,10 +84,8 @@ public: namespace Space { class Flow { public: - Flow(int i) {} + Flow(int i = 0) {} Flow(const Flow& other) {} -private: - Flow() {} }; }