ENH: Remove warning

This commit is contained in:
Andy Cedilnik 2004-04-30 17:28:54 -04:00
parent 23ba009419
commit b569571131
1 changed files with 2 additions and 1 deletions

View File

@ -7,10 +7,11 @@ public:
{ {
printf("This one has nonstandard extension\n"); printf("This one has nonstandard extension\n");
} }
int getnum() { return 0; }
}; };
int bar() int bar()
{ {
Foo f; Foo f;
return 0; return f.getnum();
} }