Commit 8e7133d6 authored by Davis King's avatar Davis King

Removed old and unneeded ::kernel_2a typedef references.

parent 82188a3d
...@@ -388,7 +388,7 @@ namespace dlib ...@@ -388,7 +388,7 @@ namespace dlib
{ {
if (receive_pipe) if (receive_pipe)
{ {
sockstreambuf::kernel_2a buf(con); sockstreambuf buf(con);
std::istream in(&buf); std::istream in(&buf);
typename receive_pipe_type::type item; typename receive_pipe_type::type item;
// This isn't necessary but doing it avoids a warning about // This isn't necessary but doing it avoids a warning about
...@@ -466,7 +466,7 @@ namespace dlib ...@@ -466,7 +466,7 @@ namespace dlib
try try
{ {
sockstreambuf::kernel_2a buf(con); sockstreambuf buf(con);
std::ostream out(&buf); std::ostream out(&buf);
typename transmit_pipe_type::type item; typename transmit_pipe_type::type item;
// This isn't necessary but doing it avoids a warning about // This isn't necessary but doing it avoids a warning about
......
...@@ -54,7 +54,7 @@ namespace dlib ...@@ -54,7 +54,7 @@ namespace dlib
} }
scoped_ptr<connection> con; scoped_ptr<connection> con;
sockstreambuf::kernel_2a buf; sockstreambuf buf;
std::iostream stream; std::iostream stream;
bool terminated; bool terminated;
}; };
......
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