123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #ifndef _LIBCPP_EXPERIMENTAL_SYSTEM_ERROR
- #define _LIBCPP_EXPERIMENTAL_SYSTEM_ERROR
- #include <experimental/__config>
- #if _LIBCPP_STD_VER > 11
- #include <system_error>
- #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
- #pragma GCC system_header
- #endif
- _LIBCPP_BEGIN_NAMESPACE_LFTS
- #ifndef _LIBCPP_HAS_NO_VARIABLE_TEMPLATES
- template <class _Tp> _LIBCPP_CONSTEXPR bool is_error_code_enum_v
- = is_error_code_enum<_Tp>::value;
- template <class _Tp> _LIBCPP_CONSTEXPR bool is_error_condition_enum_v
- = is_error_condition_enum<_Tp>::value;
- #endif
- _LIBCPP_END_NAMESPACE_LFTS
- #endif
- #endif
|