Commit b230e7c3 authored by Davis King's avatar Davis King

fixed compile time error

parent ba59ddc6
...@@ -198,8 +198,8 @@ namespace dlib ...@@ -198,8 +198,8 @@ namespace dlib
cpipe read_pipe; cpipe read_pipe;
cpipe err_pipe; cpipe err_pipe;
bool wait_called = false; bool wait_called = false;
std::unique_ptr<filestreambuf> inout_buf = NULL; std::unique_ptr<filestreambuf> inout_buf;
std::unique_ptr<filestreambuf> err_buf = NULL; std::unique_ptr<filestreambuf> err_buf;
int child_pid = -1; int child_pid = -1;
std::istream stderr; std::istream stderr;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment