Revert revisions 41544 and 41549.

See http://lists.boost.org/Archives/boost/2007/12/131116.php for details.


[SVN r41577]
This commit is contained in:
Jürgen Hunold 2007-12-02 11:51:08 +00:00
parent 5cbb539ec5
commit 0ac7e3f858
6 changed files with 1 additions and 6 deletions

View File

@ -11,7 +11,7 @@ struct A {};
struct V
{
virtual ~V() {}; // silence compiler warningsa
virtual void f() = 0;
const A* inside() {return &a;}

View File

@ -7,7 +7,6 @@
struct V
{
virtual ~V() {}; // silence compiler warningsa
virtual void f() = 0;
};

View File

@ -24,7 +24,6 @@ X make_x(int n) { return X(n); }
struct bar {};
struct foo
{
virtual ~foo() {}; // silence compiler warnings
virtual void f() = 0;
operator bar() const { return bar(); }
};

View File

@ -10,7 +10,6 @@ using namespace boost::python;
class Abstract
{
public:
virtual ~Abstract() {}; // silence compiler warningsa
virtual std::string f() =0;
};

View File

@ -129,7 +129,6 @@ shared_ptr<Y> factory(int n)
// regressions from Nicodemus
struct A
{
virtual ~A() {}; // silence compiler warnings
virtual int f() = 0;
static int call_f(shared_ptr<A>& a) { return a->f(); }
};

View File

@ -13,7 +13,6 @@
struct data
{
virtual ~data() {}; // silence compiler warnings
virtual int id() const
{
return 42;