Remove unused function

This commit is contained in:
Christian Rocha 2020-10-16 11:54:44 -04:00
parent a8ec421800
commit 82097a1c79
No known key found for this signature in database
GPG Key ID: D6CC7A16E5878018

View File

@ -389,7 +389,3 @@ func max(a, b int) int {
}
return b
}
func clamp(val, low, high int) int {
return max(low, min(high, val))
}