Boost logo

Boost-Commit :

From: ahd6974-boostorg_at_[hidden]
Date: 2008-02-16 05:19:50


Author: andreas_huber69
Date: 2008-02-16 05:19:49 EST (Sat, 16 Feb 2008)
New Revision: 43274
URL: http://svn.boost.org/trac/boost/changeset/43274

Log:
Silenced GCC 4.0.1 warning (patch supplied by Euan)
<http://thread.gmane.org/gmane.comp.lib.boost.devel/171071>
Text files modified:
   trunk/boost/statechart/detail/counted_base.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/boost/statechart/detail/counted_base.hpp
==============================================================================
--- trunk/boost/statechart/detail/counted_base.hpp (original)
+++ trunk/boost/statechart/detail/counted_base.hpp 2008-02-16 05:19:49 EST (Sat, 16 Feb 2008)
@@ -61,7 +61,7 @@
     // do nothing copy implementation is intentional (the number of
     // referencing pointers of the source and the destination is not changed
     // through the copy operation)
- counted_base( const counted_base & ) {}
+ counted_base( const counted_base & ) : base_type() {}
     counted_base & operator=( const counted_base & ) { return *this; }
 
   public:


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