Commit 3a5b4e5f authored by Davis King's avatar Davis King

Fixed typo in assert I introduced a moment ago.

parent 96f3016a
......@@ -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
......
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