static_assert.hpp 385 B

12345678910
  1. #ifndef BOOST_ENDIAN_DETAIL_STATIC_ASSERT_HPP_INCLUDED
  2. #define BOOST_ENDIAN_DETAIL_STATIC_ASSERT_HPP_INCLUDED
  3. // Copyright 2023 Peter Dimov
  4. // Distributed under the Boost Software License, Version 1.0.
  5. // https://www.boost.org/LICENSE_1_0.txt
  6. #define BOOST_ENDIAN_STATIC_ASSERT(...) static_assert(__VA_ARGS__, #__VA_ARGS__)
  7. #endif // BOOST_ENDIAN_DETAIL_STATIC_ASSERT_HPP_INCLUDED