From: <rom...@us...> - 2008-03-31 16:18:07
|
Revision: 1293 http://pygccxml.svn.sourceforge.net/pygccxml/?rev=1293&view=rev Author: roman_yakovenko Date: 2008-03-31 09:18:12 -0700 (Mon, 31 Mar 2008) Log Message: ----------- adding new test case Modified Paths: -------------- pyplusplus_dev/unittests/data/override_bug_to_be_exported.hpp Modified: pyplusplus_dev/unittests/data/override_bug_to_be_exported.hpp =================================================================== --- pyplusplus_dev/unittests/data/override_bug_to_be_exported.hpp 2008-03-26 20:36:42 UTC (rev 1292) +++ pyplusplus_dev/unittests/data/override_bug_to_be_exported.hpp 2008-03-31 16:18:12 UTC (rev 1293) @@ -14,6 +14,7 @@ { public: virtual int foo() const {return int('a');} + int foo( int a, int b ) { return a + b;} virtual ~A(){} }; @@ -79,7 +80,7 @@ class YY : public XX{ public: - virtual int do_smth() {}; + virtual void do_smth() {}; }; class ZZ : private YY{ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |