Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r83799 - trunk/boost/graph/distributed
From: jewillco_at_[hidden]
Date: 2013-04-07 15:37:47


Author: jewillco
Date: 2013-04-07 15:37:47 EDT (Sun, 07 Apr 2013)
New Revision: 83799
URL: http://svn.boost.org/trac/boost/changeset/83799

Log:
Added explicit conversion to make code with in C++11 mode; fixes #8411
Text files modified:
   trunk/boost/graph/distributed/mpi_process_group.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/boost/graph/distributed/mpi_process_group.hpp
==============================================================================
--- trunk/boost/graph/distributed/mpi_process_group.hpp (original)
+++ trunk/boost/graph/distributed/mpi_process_group.hpp 2013-04-07 15:37:47 EDT (Sun, 07 Apr 2013)
@@ -416,7 +416,7 @@
 
   void synchronize() const;
 
- operator bool() { return impl_; }
+ operator bool() { return bool(impl_); }
 
   mpi_process_group base() const;
 


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