forked from boostorg/endian
Add "operator value_type() const noexcept" to the endian arithmetic types. These types are used by people who do want fully automatic conversions. The arithmetic types need to be drop-in replacements for the built-in arithmetic types for these users.
47 lines
1.2 KiB
C++
47 lines
1.2 KiB
C++
// buffer_test.cpp -------------------------------------------------------------------//
|
|
|
|
// Copyright Beman Dawes 2014
|
|
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// See http://www.boost.org/LICENSE_1_0.txt
|
|
|
|
// See library home page at http://www.boost.org/libs/endian
|
|
|
|
//--------------------------------------------------------------------------------------//
|
|
|
|
#define _SCL_SECURE_NO_WARNINGS
|
|
|
|
#include <boost/endian/detail/disable_warnings.hpp>
|
|
|
|
#define BOOST_ENDIAN_LOG
|
|
#include <boost/endian/buffers.hpp>
|
|
#include <boost/detail/lightweight_main.hpp>
|
|
#include <boost/detail/lightweight_test.hpp>
|
|
#include <iostream>
|
|
|
|
namespace bel = boost::endian;
|
|
using std::cout;
|
|
using std::endl;
|
|
|
|
|
|
int cpp_main(int, char *[])
|
|
{
|
|
cout << "byte swap intrinsics: " BOOST_ENDIAN_INTRINSIC_MSG << endl;
|
|
|
|
cout << " construct" << endl;
|
|
bel::big_buf32_t x(1122334455);
|
|
|
|
cout << " assign from built-in integer" << endl;
|
|
x = 1234567890;
|
|
|
|
cout << " operator==(buffer, built-in)" << endl;
|
|
// bool b1(x == 1234567890);
|
|
|
|
// BOOST_TEST(x == 1234567890);
|
|
cout << " done" << endl;
|
|
|
|
return ::boost::report_errors();
|
|
}
|
|
|
|
#include <boost/endian/detail/disable_warnings_pop.hpp>
|