From 23bd977c60238023ea406f37ab4d8e397e6017fa Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Fri, 30 Jun 2023 20:01:00 +0200 Subject: [PATCH] consistency --- LEGO1/legoutil.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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