Commit 89bb2d45 authored by Davis King's avatar Davis King

Changed tests slightly to avoid a bug in gcc 4.8

parent eb676bf0
......@@ -354,7 +354,7 @@ namespace
for (int i = 0; i < 100; ++i)
{
int a = 9;
go.remove_any(a);
q.remove_any(a);
DLIB_TEST(a == 3);
}
DLIB_TEST(go.size() == 0);
......
......@@ -260,7 +260,7 @@ namespace
for (int i = 0; i < 100; ++i)
{
int a = 9;
go.remove_any(a);
a1.remove_any(a);
DLIB_TEST(a == 3);
}
DLIB_TEST(go.size() == 0);
......
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