Commit bdd901b1 authored by Davis King's avatar Davis King

Fixed silly error in code.

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