summaryrefslogtreecommitdiff
path: root/Examples/test-suite/defvalue_constructor.i
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2004-10-17 19:22:58 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2004-10-17 19:22:58 +0000
commit136025b0358cc5ee9b615cf766fdac51a2199e29 (patch)
treec4ac5e7b3a938e3fae79327b3ee9c82393801664 /Examples/test-suite/defvalue_constructor.i
parent3ac9536a8320e4b80e79ffab877a80a4f1ce60bc (diff)
downloadswig-136025b0358cc5ee9b615cf766fdac51a2199e29.tar.gz
missing function body added
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6413 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Examples/test-suite/defvalue_constructor.i')
-rw-r--r--Examples/test-suite/defvalue_constructor.i2
1 files changed, 1 insertions, 1 deletions
diff --git a/Examples/test-suite/defvalue_constructor.i b/Examples/test-suite/defvalue_constructor.i
index ebb4d2aba..e4aabaf50 100644
--- a/Examples/test-suite/defvalue_constructor.i
+++ b/Examples/test-suite/defvalue_constructor.i
@@ -7,7 +7,7 @@ namespace Foo {
class Baz {
public:
- Baz(Bar b = Bar());
+ Baz(Bar b = Bar()) {}
};
}