static_assert.hpp 377 B

12345678910
  1. #ifndef BHO_ENDIAN_DETAIL_STATIC_ASSERT_HPP_INCLUDED
  2. #define BHO_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 BHO_ENDIAN_STATIC_ASSERT(...) static_assert(__VA_ARGS__, #__VA_ARGS__)
  7. #endif // BHO_ENDIAN_DETAIL_STATIC_ASSERT_HPP_INCLUDED