diff --git a/.idea/workspace.xml b/.idea/workspace.xml index a284360..e01f610 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -18,7 +18,9 @@ - + + + - - - - - + @@ -469,6 +501,10 @@ + + + + diff --git a/uint128_test_app/src/cpp/int128_tests.cpp b/uint128_test_app/src/cpp/int128_tests.cpp index c9472fe..16dfcd3 100644 --- a/uint128_test_app/src/cpp/int128_tests.cpp +++ b/uint128_test_app/src/cpp/int128_tests.cpp @@ -4416,7 +4416,7 @@ void cjm::uint128_tests::execute_uintcontainer_adc_tests() constexpr auto res = cjm::numerics::fixed_uint_container::add_with_carry(first_addend, second_addend, 0); static_assert(sum == to_uint128_t(res)); auto res_runtime = cjm::numerics::fixed_uint_container::add_with_carry(first_addend, second_addend, 0); - auto widened = bit_cast(res_runtime); + auto widened = cjm::numerics::bit_cast(res_runtime); cjm_assert(widened == sum); auto saver = cout_saver{ cout }; std::cout << "[" << std::dec << first_addend << "] + [" << second_addend << "] == [" << widened << "]." << newl;