$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: eric_at_[hidden]
Date: 2008-05-10 11:55:41
Author: eric_niebler
Date: 2008-05-10 11:55:40 EDT (Sat, 10 May 2008)
New Revision: 45266
URL: http://svn.boost.org/trac/boost/changeset/45266
Log:
work-around for type deduction of istream insertion operator
Text files modified: 
   branches/proto/v4/boost/proto/transform/default.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: branches/proto/v4/boost/proto/transform/default.hpp
==============================================================================
--- branches/proto/v4/boost/proto/transform/default.hpp	(original)
+++ branches/proto/v4/boost/proto/transform/default.hpp	2008-05-10 11:55:40 EDT (Sat, 10 May 2008)
@@ -103,7 +103,7 @@
             BOOST_PROTO_UNARY_OP_RESULT(--, tag::pre_dec, make_mutable)
 
             BOOST_PROTO_BINARY_OP_RESULT(<<, tag::shift_left, make_mutable, make)
-            BOOST_PROTO_BINARY_OP_RESULT(>>, tag::shift_right, make_mutable, make)
+            BOOST_PROTO_BINARY_OP_RESULT(>>, tag::shift_right, make_mutable, make_mutable)
             BOOST_PROTO_BINARY_OP_RESULT(*, tag::multiplies, make, make)
             BOOST_PROTO_BINARY_OP_RESULT(/, tag::divides, make, make)
             BOOST_PROTO_BINARY_OP_RESULT(%, tag::modulus, make, make)