Commit 1a369c1c authored by Davis King's avatar Davis King

Changed code to suppress compiler warnings

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402577
parent 49063e24
...@@ -52,7 +52,7 @@ namespace ...@@ -52,7 +52,7 @@ namespace
// report as an error/failed test. // report as an error/failed test.
DLIB_CASSERT(e.at_start() == true,""); DLIB_CASSERT(e.at_start() == true,"");
int a; int a = 0;
DLIB_CASSERT(q.size() == 0,""); DLIB_CASSERT(q.size() == 0,"");
DLIB_CASSERT(q.at_start() == true,""); DLIB_CASSERT(q.at_start() == true,"");
......
...@@ -56,7 +56,7 @@ namespace ...@@ -56,7 +56,7 @@ namespace
} }
int x; int x = 0;
for (int i = 0; i < (int)a.size(); ++i) for (int i = 0; i < (int)a.size(); ++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