|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r67300 - sandbox/SOC/2010/process/boost/process/detail
From: boris_at_[hidden]
Date: 2010-12-18 08:47:41
Author: bschaeling
Date: 2010-12-18 08:47:39 EST (Sat, 18 Dec 2010)
New Revision: 67300
URL: http://svn.boost.org/trac/boost/changeset/67300
Log:
Added typename keyword to Windows code where required
Text files modified:
sandbox/SOC/2010/process/boost/process/detail/basic_status_service.hpp | 2 +-
sandbox/SOC/2010/process/boost/process/detail/status_impl.hpp | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
Modified: sandbox/SOC/2010/process/boost/process/detail/basic_status_service.hpp
==============================================================================
--- sandbox/SOC/2010/process/boost/process/detail/basic_status_service.hpp (original)
+++ sandbox/SOC/2010/process/boost/process/detail/basic_status_service.hpp 2010-12-18 08:47:39 EST (Sat, 18 Dec 2010)
@@ -246,7 +246,7 @@
BOOST_PROCESS_THROW_LAST_SYSTEM_ERROR(
"GetExitCodeProcess() failed");
boost::unique_lock<boost::mutex> lock(work_thread_mutex_);
- for (std::vector<implementation_type>::iterator it =
+ for (typename std::vector<implementation_type>::iterator it =
impls_.begin(); it != impls_.end(); ++it)
(*it)->complete(handle, exit_code);
std::vector<HANDLE>::iterator it = handles_.begin();
Modified: sandbox/SOC/2010/process/boost/process/detail/status_impl.hpp
==============================================================================
--- sandbox/SOC/2010/process/boost/process/detail/status_impl.hpp (original)
+++ sandbox/SOC/2010/process/boost/process/detail/status_impl.hpp 2010-12-18 08:47:39 EST (Sat, 18 Dec 2010)
@@ -89,7 +89,7 @@
for (operations_type::iterator it = ops_.begin(); it != ops_.end();
++it)
{
- for (Container::iterator it2 = handles.begin(); it2 !=
+ for (typename Container::iterator it2 = handles.begin(); it2 !=
handles.end(); ++it2)
{
if (*it2 == it->first)
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