Commit 8f118e3e authored by Davis King's avatar Davis King

Fixed a bug in an assert

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%404119
parent 61e7e93a
...@@ -38,7 +38,7 @@ namespace dlib ...@@ -38,7 +38,7 @@ namespace dlib
"\tvoid spatially_filter_image()" "\tvoid spatially_filter_image()"
<< "\n\tYou can't give a scale of zero" << "\n\tYou can't give a scale of zero"
); );
DLIB_ASSERT(is_same_object(in_img, out_img), DLIB_ASSERT(is_same_object(in_img, out_img) == false,
"\tvoid spatially_filter_image()" "\tvoid spatially_filter_image()"
<< "\n\tYou must give two different image objects" << "\n\tYou must give two different image objects"
); );
......
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