Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r57419 - branches/release/boost/exception/detail
From: emil_at_[hidden]
Date: 2009-11-05 14:35:43


Author: emildotchevski
Date: 2009-11-05 14:35:42 EST (Thu, 05 Nov 2009)
New Revision: 57419
URL: http://svn.boost.org/trac/boost/changeset/57419

Log:
"Fixing" lame GCC warning
Text files modified:
   branches/release/boost/exception/detail/exception_ptr_base.hpp | 5 ++++-
   1 files changed, 4 insertions(+), 1 deletions(-)

Modified: branches/release/boost/exception/detail/exception_ptr_base.hpp
==============================================================================
--- branches/release/boost/exception/detail/exception_ptr_base.hpp (original)
+++ branches/release/boost/exception/detail/exception_ptr_base.hpp 2009-11-05 14:35:42 EST (Thu, 05 Nov 2009)
@@ -22,7 +22,10 @@
 
                         protected:
 
- ~exception_ptr_base() throw() { }
+ virtual
+ ~exception_ptr_base() throw()
+ {
+ }
                         };
                 }
     }


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