Finalize buffer and arithmetic decomposition. Finalize name changes. Finalize test cases. Remove cruft. Docs still to do.

This commit is contained in:
Beman
2014-11-26 10:04:33 -05:00
parent bb785ed8e0
commit e2045b7ffa
17 changed files with 421 additions and 414 deletions

View File

@ -29,15 +29,15 @@ int cpp_main(int, char *[])
cout << "byte swap intrinsics: " BOOST_ENDIAN_INTRINSIC_MSG << endl;
cout << " construct" << endl;
bel::big_buf32_t x(1122334455);
bel::big_int32_buf_t x(1122334455);
cout << " assign from built-in integer" << endl;
x = 1234567890;
cout << " operator==(buffer, built-in)" << endl;
// bool b1(x == 1234567890);
bool b1(x.value() == 1234567890);
BOOST_TEST(b1);
// BOOST_TEST(x == 1234567890);
cout << " done" << endl;
return ::boost::report_errors();