Commit bdd901b1 authored by Davis King's avatar Davis King

Fixed silly error in code.

parent 3e63e0a1
......@@ -101,7 +101,7 @@ namespace dlib
return false;
for (size_t i = 0; i < parts.size(); ++i)
{
if (parts[i] != rhs.parts[i]);
if (parts[i] != rhs.parts[i])
return false;
}
return true;
......
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