$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r51573 - trunk/boost/signals2
From: fmhess_at_[hidden]
Date: 2009-03-03 10:06:49
Author: fmhess
Date: 2009-03-03 10:06:48 EST (Tue, 03 Mar 2009)
New Revision: 51573
URL: http://svn.boost.org/trac/boost/changeset/51573
Log:
Quiet a compiler warning on msvc 7.1
Text files modified: 
   trunk/boost/signals2/last_value.hpp |     3 ++-                                     
   1 files changed, 2 insertions(+), 1 deletions(-)
Modified: trunk/boost/signals2/last_value.hpp
==============================================================================
--- trunk/boost/signals2/last_value.hpp	(original)
+++ trunk/boost/signals2/last_value.hpp	2009-03-03 10:06:48 EST (Tue, 03 Mar 2009)
@@ -29,7 +29,8 @@
     };
 
     template<typename T>
-    struct last_value {
+    class last_value {
+    public:
       typedef T result_type;
 
       template<typename InputIterator>