Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:53:22

0001 // Copyright 2023 Christian Mazakas
0002 // Distributed under the Boost Software License, Version 1.0. (See accompanying
0003 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0004 
0005 #ifndef BOOST_UNORDERED_DETAIL_STATIC_ASSERT_HPP
0006 #define BOOST_UNORDERED_DETAIL_STATIC_ASSERT_HPP
0007 
0008 #include <boost/config.hpp>
0009 #if defined(BOOST_HAS_PRAGMA_ONCE)
0010 #pragma once
0011 #endif
0012 
0013 #define BOOST_UNORDERED_STATIC_ASSERT(...)                                     \
0014   static_assert(__VA_ARGS__, #__VA_ARGS__)
0015 
0016 #endif // BOOST_UNORDERED_DETAIL_STATIC_ASSERT_HPP