static_assert.hpp 372 B

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