From a886b71a471424b30fddce190f35251d7511abe8 Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Tue, 29 Mar 2011 22:21:08 +0000 Subject: test case fix git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12567 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Examples/test-suite/smart_pointer_template_const_overload.i | 6 +++--- 1 file 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; -- cgit v1.2.1