| 1 | // Copyright 2023 Christian Mazakas |
| 2 | // Distributed under the Boost Software License, Version 1.0. (See accompanying |
| 3 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
| 4 | |
| 5 | #ifndef BOOST_UNORDERED_DETAIL_STATIC_ASSERT_HPP |
| 6 | #define BOOST_UNORDERED_DETAIL_STATIC_ASSERT_HPP |
| 7 | |
| 8 | #include <boost/config.hpp> |
| 9 | #if defined(BOOST_HAS_PRAGMA_ONCE) |
| 10 | #pragma once |
| 11 | #endif |
| 12 | |
| 13 | #define BOOST_UNORDERED_STATIC_ASSERT(...) \ |
| 14 | static_assert(__VA_ARGS__, #__VA_ARGS__) |
| 15 | |
| 16 | #endif // BOOST_UNORDERED_DETAIL_STATIC_ASSERT_HPP |
| 17 | |