Skip to content

Commit

Permalink
Qualified code missed in last commit (done from Windows): x64 linux s…
Browse files Browse the repository at this point in the history
…pecific conditionally compiled code now qualified to compensate for de-anonymization of namespace in uint128.inl.
  • Loading branch information
cpsusie authored and cpsusie committed Apr 10, 2021
1 parent 637e2d7 commit bf0f8c2
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 10 deletions.
54 changes: 45 additions & 9 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion uint128_test_app/src/cpp/int128_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<uint128_t>(res_runtime);
auto widened = cjm::numerics::bit_cast<uint128_t>(res_runtime);
cjm_assert(widened == sum);
auto saver = cout_saver{ cout };
std::cout << "[" << std::dec << first_addend << "] + [" << second_addend << "] == [" << widened << "]." << newl;
Expand Down

0 comments on commit bf0f8c2

Please sign in to comment.