#ifndef _LIBCPP___TYPE_TRAITS_ADD_POINTER_H
#define _LIBCPP___TYPE_TRAITS_ADD_POINTER_H
#include <__config>
#include <__type_traits/is_referenceable.h>
#include <__type_traits/is_void.h>
#include <__type_traits/remove_reference.h>
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
# pragma GCC system_header
#endif
_LIBCPP_BEGIN_NAMESPACE_STD
#if !defined(_LIBCPP_WORKAROUND_OBJCXX_COMPILER_INTRINSICS) && __has_builtin(__add_pointer)
__add_pointer_t;
#else
template <class _Tp, bool = __libcpp_is_referenceable<_Tp>::value || is_void<_Tp>::value>
struct __add_pointer_impl {
typedef _LIBCPP_NODEBUG __libcpp_remove_reference_t<_Tp>* type;
};
template <class _Tp>
struct __add_pointer_impl<_Tp, false> {
typedef _LIBCPP_NODEBUG _Tp type;
};
template <class _Tp>
using __add_pointer_t = typename __add_pointer_impl<_Tp>::type;
#endif
template <class _Tp>
struct add_pointer { … };
#if _LIBCPP_STD_VER >= 14
add_pointer_t;
#endif
_LIBCPP_END_NAMESPACE_STD
#endif