mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
20 lines
689 B
Plaintext
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
|