mirror of https://github.com/trapexit/mergerfs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
549 B
16 lines
549 B
// Copyright 2023 Christian Mazakas
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
#ifndef BOOST_UNORDERED_DETAIL_STATIC_ASSERT_HPP
|
|
#define BOOST_UNORDERED_DETAIL_STATIC_ASSERT_HPP
|
|
|
|
#include <boost/config.hpp>
|
|
#if defined(BOOST_HAS_PRAGMA_ONCE)
|
|
#pragma once
|
|
#endif
|
|
|
|
#define BOOST_UNORDERED_STATIC_ASSERT(...) \
|
|
static_assert(__VA_ARGS__, #__VA_ARGS__)
|
|
|
|
#endif // BOOST_UNORDERED_DETAIL_STATIC_ASSERT_HPP
|