Browse Source

ENH: Remove warning

Andy Cedilnik 21 years ago
parent
commit
b569571131
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Tests/Simple/simpleWe.cpp

+ 2 - 1
Tests/Simple/simpleWe.cpp

@@ -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();
 }
 }