mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-22 07:41:16 +00:00
consistency
This commit is contained in:
parent
823b35a3ba
commit
23bd977c60
@ -10,13 +10,13 @@ inline T Abs(T p_t)
|
|||||||
template <class T>
|
template <class T>
|
||||||
inline T Min(T p_t1, T p_t2)
|
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>
|
template <class T>
|
||||||
inline T Max(T p_t1, T p_t2)
|
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
|
#endif // LEGOUTIL_H
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user