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() {} }; }