34 lines
722 B
C++
34 lines
722 B
C++
#ifndef BOOST_ENDIAN_DETAIL_IS_SCOPED_ENUM_HPP_INCLUDED
|
|
#define BOOST_ENDIAN_DETAIL_IS_SCOPED_ENUM_HPP_INCLUDED
|
|
|
|
// Copyright 2020 Peter Dimov
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// https://www.boost.org/LICENSE_1_0.txt
|
|
|
|
#include <type_traits>
|
|
|
|
namespace boost
|
|
{
|
|
namespace endian
|
|
{
|
|
namespace detail
|
|
{
|
|
|
|
template<class T> struct negation: std::integral_constant<bool, !T::value> {};
|
|
|
|
template<class T> struct is_scoped_enum:
|
|
std::conditional<
|
|
std::is_enum<T>::value,
|
|
negation< std::is_convertible<T, int> >,
|
|
std::false_type
|
|
>::type
|
|
{
|
|
};
|
|
|
|
} // namespace detail
|
|
} // namespace endian
|
|
} // namespace boost
|
|
|
|
#endif // BOOST_ENDIAN_DETAIL_IS_SCOPED_ENUM_HPP_INCLUDED
|