Remove unused CrunchUInt64() overload.
All checks were successful
Chaos Ci / test-and-benchmark (push) Successful in 1m57s
All checks were successful
Chaos Ci / test-and-benchmark (push) Successful in 1m57s
This commit is contained in:
@@ -82,15 +82,6 @@ struct Bitwise
|
||||
return result;
|
||||
}
|
||||
|
||||
template<typename OutputIt>
|
||||
static void CrunchUInt64(OutputIt out, uint64_t value)
|
||||
{
|
||||
for (int_fast8_t i = 0; i < 8; ++i)
|
||||
{
|
||||
*out++ = (value >> (56 - (i * 8))) & Mask<8>();
|
||||
}
|
||||
}
|
||||
|
||||
template<typename OutputIt>
|
||||
static void CrunchUInt64(OutputIt outBegin, OutputIt outEnd, uint64_t value)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user