| 198 | } |
| 199 | |
| 200 | void SetEnv(const std::string& name, const std::string& value) { |
| 201 | #ifdef BOOST_PROCESS_AVAILABLE |
| 202 | # ifdef BOOST_PROCESS_USE_V2 |
| 203 | env_[name] = process::environment::value(value); |
| 204 | # else |
| 205 | env_[name] = value; |
| 206 | # endif |
| 207 | #endif |
| 208 | } |
| 209 | |
| 210 | void IgnoreStderr() { |
| 211 | #ifdef BOOST_PROCESS_AVAILABLE |