consistency

This commit is contained in:
Christian Semmler 2023-06-30 20:01:00 +02:00
parent 823b35a3ba
commit 23bd977c60
No known key found for this signature in database
GPG Key ID: 086DAA1360BEEE5C

View File

@ -10,13 +10,13 @@ inline T Abs(T p_t)
template <class T>
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 <class T>
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