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 @@
-
+
+
+
@@ -73,7 +75,7 @@
-
+
@@ -91,12 +93,7 @@
-
-
-
-
-
-
+
@@ -165,6 +162,13 @@
+
+
+
+
+
+
+
1610297106627
@@ -425,7 +429,35 @@
1614548121338
-
+
+ 1617465782036
+
+
+
+ 1617465782036
+
+
+ 1617979363442
+
+
+
+ 1617979363442
+
+
+ 1617984854335
+
+
+
+ 1617984854335
+
+
+ 1618007511594
+
+
+
+ 1618007511594
+
+
@@ -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;