further cleanups
This commit is contained in:
@@ -44,6 +44,12 @@ constexpr T pow4(T x)
|
||||
return SQR(SQR(x));
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
constexpr T pow5(T x)
|
||||
{
|
||||
return x * pow4(x);
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
constexpr const T& min(const T& a)
|
||||
{
|
||||
|
Reference in New Issue
Block a user