diff --git a/test/test_bit.cpp b/test/test_bit.cpp index 0a92307a..55d5ce27 100644 --- a/test/test_bit.cpp +++ b/test/test_bit.cpp @@ -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 diff --git a/test/test_delegate_cpp03.cpp b/test/test_delegate_cpp03.cpp index 821f31f9..dfb7c3a4 100644 --- a/test/test_delegate_cpp03.cpp +++ b/test/test_delegate_cpp03.cpp @@ -37,7 +37,6 @@ namespace { //***************************************************************************** const int VALUE1 = 1; - const int VALUE2 = 2; bool function_called = false; bool parameter_correct = false;