summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2011-03-29 22:21:08 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2011-03-29 22:21:08 +0000
commita886b71a471424b30fddce190f35251d7511abe8 (patch)
tree04f7554a639f7719212647e5f25043d7cf46ae62
parent9b60e3b7bb0b14fc5cfe05c042a3ea21ad11f47e (diff)
downloadswig-rel-2.0.3.tar.gz
test case fixv2.0.3rel-2.0.3
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12567 626c5289-ae23-0410-ae9c-e8d60b6d4f22
-rw-r--r--Examples/test-suite/smart_pointer_template_const_overload.i6
1 files changed, 3 insertions, 3 deletions
diff --git a/Examples/test-suite/smart_pointer_template_const_overload.i b/Examples/test-suite/smart_pointer_template_const_overload.i
index 7c890fbcf..831e3f2fe 100644
--- a/Examples/test-suite/smart_pointer_template_const_overload.i
+++ b/Examples/test-suite/smart_pointer_template_const_overload.i
@@ -13,9 +13,9 @@
class FooImplementation {
public:
- int mingy() {}
- int constmingy() const {}
- static int thingy() {}
+ int mingy() { return 0; }
+ int constmingy() const { return 0; }
+ static int thingy() { return 0; }
static int svariable;
static const int constsvariable;
int normalvariable;