add missing return to testcase

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12244 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2010-10-03 16:47:30 +00:00
parent 77a45b2631
commit c7b4336a6c
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ double MoreStations::WestonSuperMare = 0.0;
%inline %{
struct YetMoreStations {
virtual int Slough(int x) {}
virtual int Slough(int x) { return x; }
virtual ~YetMoreStations() {}
};
%}