handle missing return values
This commit is contained in:
@@ -1409,8 +1409,7 @@ max(
|
||||
if(y >= z && y >= x)
|
||||
return(y);
|
||||
|
||||
if(z >= y && z >= x)
|
||||
return(z);
|
||||
return(z);
|
||||
}
|
||||
|
||||
/************************************************************************
|
||||
@@ -1429,8 +1428,7 @@ min(
|
||||
if(y <= z && y <= x)
|
||||
return(y);
|
||||
|
||||
if(z <= y && z <= x)
|
||||
return(z);
|
||||
return(z);
|
||||
}
|
||||
|
||||
/************************************************************************
|
||||
|
||||
Reference in New Issue
Block a user