Boost logo

Boost-Commit :

From: juergen.hunold_at_[hidden]
Date: 2007-12-02 06:51:09


Author: jhunold
Date: 2007-12-02 06:51:08 EST (Sun, 02 Dec 2007)
New Revision: 41577
URL: http://svn.boost.org/trac/boost/changeset/41577

Log:
Revert revisions 41544 and 41549.
See http://lists.boost.org/Archives/boost/2007/12/131116.php for details.

Text files modified:
   trunk/libs/python/test/bienstman1.cpp | 2 +-
   trunk/libs/python/test/bienstman3.cpp | 1 -
   trunk/libs/python/test/implicit.cpp | 1 -
   trunk/libs/python/test/pointer_vector.cpp | 1 -
   trunk/libs/python/test/shared_ptr.cpp | 1 -
   trunk/libs/python/test/wrapper_held_type.cpp | 1 -
   6 files changed, 1 insertions(+), 6 deletions(-)

Modified: trunk/libs/python/test/bienstman1.cpp
==============================================================================
--- trunk/libs/python/test/bienstman1.cpp (original)
+++ trunk/libs/python/test/bienstman1.cpp 2007-12-02 06:51:08 EST (Sun, 02 Dec 2007)
@@ -11,7 +11,7 @@
 
 struct V
 {
- virtual ~V() {}; // silence compiler warningsa
+
  virtual void f() = 0;
 
  const A* inside() {return &a;}

Modified: trunk/libs/python/test/bienstman3.cpp
==============================================================================
--- trunk/libs/python/test/bienstman3.cpp (original)
+++ trunk/libs/python/test/bienstman3.cpp 2007-12-02 06:51:08 EST (Sun, 02 Dec 2007)
@@ -7,7 +7,6 @@
 
 struct V
 {
- virtual ~V() {}; // silence compiler warningsa
  virtual void f() = 0;
 };
 

Modified: trunk/libs/python/test/implicit.cpp
==============================================================================
--- trunk/libs/python/test/implicit.cpp (original)
+++ trunk/libs/python/test/implicit.cpp 2007-12-02 06:51:08 EST (Sun, 02 Dec 2007)
@@ -24,7 +24,6 @@
 struct bar {};
 struct foo
 {
- virtual ~foo() {}; // silence compiler warnings
     virtual void f() = 0;
     operator bar() const { return bar(); }
 };

Modified: trunk/libs/python/test/pointer_vector.cpp
==============================================================================
--- trunk/libs/python/test/pointer_vector.cpp (original)
+++ trunk/libs/python/test/pointer_vector.cpp 2007-12-02 06:51:08 EST (Sun, 02 Dec 2007)
@@ -10,7 +10,6 @@
 class Abstract
 {
 public:
- virtual ~Abstract() {}; // silence compiler warningsa
     virtual std::string f() =0;
 };
 

Modified: trunk/libs/python/test/shared_ptr.cpp
==============================================================================
--- trunk/libs/python/test/shared_ptr.cpp (original)
+++ trunk/libs/python/test/shared_ptr.cpp 2007-12-02 06:51:08 EST (Sun, 02 Dec 2007)
@@ -129,7 +129,6 @@
 // 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(); }
     };

Modified: trunk/libs/python/test/wrapper_held_type.cpp
==============================================================================
--- trunk/libs/python/test/wrapper_held_type.cpp (original)
+++ trunk/libs/python/test/wrapper_held_type.cpp 2007-12-02 06:51:08 EST (Sun, 02 Dec 2007)
@@ -13,7 +13,6 @@
 
 struct data
 {
- virtual ~data() {}; // silence compiler warnings
     virtual int id() const
     {
         return 42;


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk