diff options
Diffstat (limited to 'zen/basic_math.h')
-rw-r--r-- | zen/basic_math.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/basic_math.h b/zen/basic_math.h index bd416d19..f8a7affd 100644 --- a/zen/basic_math.h +++ b/zen/basic_math.h @@ -142,7 +142,7 @@ T confineCpy(const T& val, const T& minVal, const T& maxVal) return minVal; else if (val > maxVal) return maxVal; - return val; + return val; } template <class T> inline |