summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;