mirror of https://github.com/davisking/dlib.git
Fixed typo in assert I introduced a moment ago.
This commit is contained in:
parent
96f3016a23
commit
3a5b4e5f25
|
@ -461,7 +461,7 @@ namespace dlib
|
||||||
double nu
|
double nu
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
DLIB_CASSERT(0 < nu <= 1,
|
DLIB_CASSERT(0 < nu && nu <= 1,
|
||||||
"\t void shape_predictor_trainer::set_nu()"
|
"\t void shape_predictor_trainer::set_nu()"
|
||||||
<< "\n\t Invalid inputs were given to this function. "
|
<< "\n\t Invalid inputs were given to this function. "
|
||||||
<< "\n\t nu: " << nu
|
<< "\n\t nu: " << nu
|
||||||
|
|
Loading…
Reference in New Issue