Removed unused code.

This commit is contained in:
John Wellbelove 2022-04-20 13:38:22 +02:00
parent 63c05fb6b9
commit e1fa7d198e
2 changed files with 0 additions and 15 deletions

View File

@ -130,20 +130,6 @@ namespace
return count & 1;
}
//***********************************
// Power of 2.
uint64_t test_power_of_2(int power)
{
uint64_t result = 1ULL;
for (int i = 0; i < power; ++i)
{
result *= 2;
}
return result;
}
//***********************************
// Count the bit width the long way.
template <typename T>

View File

@ -37,7 +37,6 @@ namespace
{
//*****************************************************************************
const int VALUE1 = 1;
const int VALUE2 = 2;
bool function_called = false;
bool parameter_correct = false;