skystrife / procxx

A simple process management library for C++ on UNIX platforms.
MIT License
143 stars 28 forks source link

Replaces pointers with reference_wrapper in pipeline #1

Closed heyterrance closed 8 years ago

heyterrance commented 8 years ago

Replaces the raw pointers in the pipeline vector with std::reference_wrappers. This avoids the possibility of having a null process.

skystrife commented 8 years ago

Thanks! This makes the intent more clear, too.