mirror of https://github.com/davisking/dlib.git
Fixed a bug in an assert
--HG-- extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%404119
This commit is contained in:
parent
61e7e93a62
commit
8f118e3e12
|
@ -38,7 +38,7 @@ namespace dlib
|
|||
"\tvoid spatially_filter_image()"
|
||||
<< "\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()"
|
||||
<< "\n\tYou must give two different image objects"
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue