Commit 879202b7 authored by Davis King's avatar Davis King

Fixed build error in newer clang on OpenBSD.

parent d9af22e5
...@@ -15,7 +15,6 @@ namespace ...@@ -15,7 +15,6 @@ namespace
using namespace test; using namespace test;
using namespace dlib; using namespace dlib;
using namespace std;
logger dlog("test.stack"); logger dlog("test.stack");
...@@ -220,10 +219,10 @@ namespace ...@@ -220,10 +219,10 @@ namespace
// serialize the state of a2, then clear a2, then // serialize the state of a2, then clear a2, then
// load the state back into a2. // load the state back into a2.
ostringstream sout; std::ostringstream sout;
serialize(a2,sout); serialize(a2,sout);
DLIB_TEST(a2.at_start() == true); DLIB_TEST(a2.at_start() == true);
istringstream sin(sout.str()); std::istringstream sin(sout.str());
a2.clear(); a2.clear();
deserialize(a2,sin); deserialize(a2,sin);
......
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