Files
Upsilon/libaxx/include/external/libcxx/include/__config
2018-07-18 16:32:49 +02:00

20 lines
689 B
Plaintext

#ifndef LIBAXX_LIBCXX_CONFIG
#define LIBAXX_LIBCXX_CONFIG
#define _LIBCPP_BEGIN_NAMESPACE_STD namespace std {
#define _LIBCPP_END_NAMESPACE_STD }
#define _LIBCPP_TEMPLATE_VIS __attribute__ ((__visibility__("default")))
#define _LIBCPP_INLINE_VISIBILITY __attribute__ ((__visibility__("hidden"), __always_inline__))
#define _LIBCPP_CONSTEXPR_AFTER_CXX11
#define _LIBCPP_CONSTEXPR_AFTER_CXX14
#define _LIBCPP_CONSTEXPR constexpr
#define __has_feature(__x) 0
#define _LIBCPP_NO_CFI
#define _NOEXCEPT noexcept
#define _NOEXCEPT_(x) noexcept(x)
#define _LIBCPP_HAS_NO_INT128
#define _VSTD std
#define _LIBCPP_ALWAYS_INLINE __attribute__ ((__visibility__("hidden"), __always_inline__))
#endif