Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r63803 - sandbox/SOC/2010/process/boost/process/detail
From: fotanus_at_[hidden]
Date: 2010-07-10 00:20:01


Author: fotanus
Date: 2010-07-10 00:19:53 EDT (Sat, 10 Jul 2010)
New Revision: 63803
URL: http://svn.boost.org/trac/boost/changeset/63803

Log:
Small fix on Windows after some changes to work on POSIX systems.
Text files modified:
   sandbox/SOC/2010/process/boost/process/detail/win32_helpers.hpp | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: sandbox/SOC/2010/process/boost/process/detail/win32_helpers.hpp
==============================================================================
--- sandbox/SOC/2010/process/boost/process/detail/win32_helpers.hpp (original)
+++ sandbox/SOC/2010/process/boost/process/detail/win32_helpers.hpp 2010-07-10 00:19:53 EDT (Sat, 10 Jul 2010)
@@ -45,7 +45,7 @@
  * the environment's content. This string is of the form
  * var1=value1\\0var2=value2\\0\\0.
  */
-inline boost::shared_array<char> environment_to_win32_strings(environment &env)
+inline boost::shared_array<char> environment_to_win32_strings(environment_t &env)
 {
     boost::shared_array<char> envp;
 
@@ -57,7 +57,7 @@
     else
     {
         std::string s;
- for (environment::const_iterator it = env.begin(); it != env.end(); ++it)
+ for (environment_t::const_iterator it = env.begin(); it != env.end(); ++it)
         {
             s += (*it).first + "=" + (*it).second;
             s.push_back(0);


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