| 1285 | { return comm_.send(msg); } |
| 1286 | |
| 1287 | std::pair<OutBuffer, ErrBuffer> communicate(const char* msg, size_t length) |
| 1288 | { return comm_.communicate(msg, length); } |
| 1289 | |
| 1290 | std::pair<OutBuffer, ErrBuffer> communicate(const std::vector<char>& msg) |
| 1291 | { return comm_.communicate(msg); } |
nothing calls this directly
no test coverage detected