Linker errors fixed for member_funcptr_galore testcase

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12420 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2011-02-01 07:17:51 +00:00
commit af4873f879

View file

@ -18,8 +18,8 @@ public:
double *z;
void move(double dx, double dy);
virtual double area(Shape &ref, int & (FunkSpace::Funktions::*d)(const int &, int));
virtual double abc(Thing<short> ts, Thing< const Space::Shape * > tda[]);
virtual double area(Shape &ref, int & (FunkSpace::Funktions::*d)(const int &, int)) { return 0.0; }
virtual double abc(Thing<short> ts, Thing< const Space::Shape * > tda[]) { return 0.0; }
};
}