Commit 66f92cb1 authored by Davis King's avatar Davis King

Changed code to avoid a compiler warning.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402278
parent 91568536
...@@ -565,7 +565,7 @@ namespace ...@@ -565,7 +565,7 @@ namespace
} }
for (unsigned long i = 0; i < 100; ++i) for (unsigned long i = 0; i < 100; ++i)
{ {
unsigned long a; unsigned long a = 0;
a1.pop_back(a); a1.pop_back(a);
DLIB_CASSERT(a == 99-i,""); DLIB_CASSERT(a == 99-i,"");
} }
......
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