eidheim / tiny-process-library

A small platform independent library making it simple to create and stop new processes in C++, as well as writing to stdin and reading from stdout and stderr of a new process
MIT License
338 stars 73 forks source link

Add missing standard library include #15

Closed dreckard closed 8 years ago

dreckard commented 8 years ago

Process.hpp references std::unique_ptr which is defined in <memory>. <memory> was missing while <mutex> was included twice. Maybe a bad merge?

eidheim commented 8 years ago

Thank you!