$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r77224 - trunk/boost/thread
From: vicente.botet_at_[hidden]
Date: 2012-03-04 15:56:43
Author: viboes
Date: 2012-03-04 15:56:42 EST (Sun, 04 Mar 2012)
New Revision: 77224
URL: http://svn.boost.org/trac/boost/changeset/77224
Log:
Thread: removed output to cout to fix 6612
Text files modified: 
   trunk/boost/thread/future.hpp |     6 ------                                  
   1 files changed, 0 insertions(+), 6 deletions(-)
Modified: trunk/boost/thread/future.hpp
==============================================================================
--- trunk/boost/thread/future.hpp	(original)
+++ trunk/boost/thread/future.hpp	2012-03-04 15:56:42 EST (Sun, 04 Mar 2012)
@@ -1331,22 +1331,16 @@
         // Result retrieval
         BOOST_THREAD_FUTURE<R> get_future()
         {
-          std::cout<< __LINE__ << " " << int(future_obtained) << std::endl;
             lazy_init();
-            std::cout<< __LINE__ << " " << int(future_obtained) << std::endl;
             if (future_.get()==0)
             {
-              std::cout<< __LINE__ << " " << int(future_obtained) << std::endl;
                 boost::throw_exception(promise_moved());
             }
             if (future_obtained)
             {
-              std::cout<< __LINE__ << " " << int(future_obtained) << std::endl;
                 boost::throw_exception(future_already_retrieved());
             }
-            std::cout<< __LINE__ << " " << int(future_obtained) << std::endl;
             future_obtained=true;
-            std::cout<< __LINE__ << " " << int(future_obtained) << std::endl;
             return BOOST_THREAD_FUTURE<R>(future_);
         }