Commit 04526626 authored by Davis King's avatar Davis King

Fixed errant const.

parent b7e127f2
...@@ -100,7 +100,7 @@ namespace dlib ...@@ -100,7 +100,7 @@ namespace dlib
void set_num_epochs ( void set_num_epochs (
unsigned long num unsigned long num
) const )
{ {
DLIB_CASSERT(num > 0,""); DLIB_CASSERT(num > 0,"");
num_epochs = num; num_epochs = num;
......
...@@ -143,7 +143,7 @@ namespace dlib ...@@ -143,7 +143,7 @@ namespace dlib
void set_num_epochs ( void set_num_epochs (
unsigned long num unsigned long num
) const; );
/*! /*!
requires requires
- num > 0 - num > 0
......
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