Fixed typo in assert I introduced a moment ago.

This commit is contained in:
Davis King 2014-12-27 14:56:22 -05:00
parent 96f3016a23
commit 3a5b4e5f25

View File

@ -461,7 +461,7 @@ namespace dlib
double nu
)
{
DLIB_CASSERT(0 < nu <= 1,
DLIB_CASSERT(0 < nu && nu <= 1,
"\t void shape_predictor_trainer::set_nu()"
<< "\n\t Invalid inputs were given to this function. "
<< "\n\t nu: " << nu