Fixed bug in cpp0x testcase.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2009-matevz@11447 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Matevz Jekovec 2009-07-24 08:52:35 +00:00
commit fd981a58dd

View file

@ -2,8 +2,8 @@
%inline %{
struct point {
// point() {}
// point(int x, int y) : x_(x), y_(y) {}
point() {}
point(int x, int y) : x_(x), y_(y) {}
int x_, y_;
};