fixed compile time error

This commit is contained in:
Davis King 2016-05-31 12:40:48 -04:00
parent ba59ddc6b5
commit b230e7c33d
1 changed files with 2 additions and 2 deletions

View File

@ -198,8 +198,8 @@ namespace dlib
cpipe read_pipe;
cpipe err_pipe;
bool wait_called = false;
std::unique_ptr<filestreambuf> inout_buf = NULL;
std::unique_ptr<filestreambuf> err_buf = NULL;
std::unique_ptr<filestreambuf> inout_buf;
std::unique_ptr<filestreambuf> err_buf;
int child_pid = -1;
std::istream stderr;
};