diff --git a/LEGO1/legoutil.h b/LEGO1/legoutil.h index aa8600bc..f0e97ac5 100644 --- a/LEGO1/legoutil.h +++ b/LEGO1/legoutil.h @@ -10,13 +10,13 @@ inline T Abs(T p_t) template inline T Min(T p_t1, T p_t2) { - return p_t1 < p_t2 ? p_t1 : p_t2; + return p_t1 < p_t2 ? p_t1 : p_t2; } template inline T Max(T p_t1, T p_t2) { - return p_t1 > p_t2 ? p_t1 : p_t2; + return p_t1 > p_t2 ? p_t1 : p_t2; } #endif // LEGOUTIL_H