Skip to content
Snippets Groups Projects
Commit b79926ce authored by Laurent Van Migroet's avatar Laurent Van Migroet
Browse files

setMax/setMin should not return a value

parent 80ccb35e
No related branches found
No related tags found
No related merge requests found
......@@ -60,9 +60,9 @@ class stepData{
double getTime(){ return _time; }
void setTime(double time){ _time = time; }
double getMin(){ return _min; }
double setMin(double min){ _min = min; }
void setMin(double min){ _min = min; }
double getMax(){ return _max; }
double setMax(double max){ _max = max; }
void setMax(double max){ _max = max; }
int getNumData()
{
if(!_data) return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment