Sha256: 73ce0f566dbcf529c81aa89ff10002adaae2bbb923623ae090b50d5284edc4eb
Contents?: true
Size: 980 Bytes
Versions: 8
Compression:
Stored size: 980 Bytes
Contents
/* * 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) * * Copyright (c) 2021 Andrey Semashev */ /*! * \file atomic/detail/type_traits/is_enum.hpp * * This header defines \c is_enum type trait */ #ifndef BOOST_ATOMIC_DETAIL_TYPE_TRAITS_IS_ENUM_HPP_INCLUDED_ #define BOOST_ATOMIC_DETAIL_TYPE_TRAITS_IS_ENUM_HPP_INCLUDED_ #include <boost/atomic/detail/config.hpp> #if !defined(BOOST_ATOMIC_DETAIL_NO_CXX11_BASIC_HDR_TYPE_TRAITS) #include <type_traits> #else #include <boost/type_traits/is_enum.hpp> #endif #ifdef BOOST_HAS_PRAGMA_ONCE #pragma once #endif namespace boost { namespace atomics { namespace detail { #if !defined(BOOST_ATOMIC_DETAIL_NO_CXX11_BASIC_HDR_TYPE_TRAITS) using std::is_enum; #else using boost::is_enum; #endif } // namespace detail } // namespace atomics } // namespace boost #endif // BOOST_ATOMIC_DETAIL_TYPE_TRAITS_IS_ENUM_HPP_INCLUDED_
Version data entries
8 entries across 8 versions & 1 rubygems