brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.3 KiB · dbcbf76 Raw
37 lines · c
1//===----------------------------------------------------------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef _LIBCPP___CXX03___TUPLE_SFINAE_HELPERS_H10#define _LIBCPP___CXX03___TUPLE_SFINAE_HELPERS_H11 12#include <__cxx03/__config>13#include <__cxx03/__fwd/tuple.h>14#include <__cxx03/__tuple/make_tuple_types.h>15#include <__cxx03/__tuple/tuple_element.h>16#include <__cxx03/__tuple/tuple_like_ext.h>17#include <__cxx03/__tuple/tuple_size.h>18#include <__cxx03/__tuple/tuple_types.h>19#include <__cxx03/__type_traits/conjunction.h>20#include <__cxx03/__type_traits/enable_if.h>21#include <__cxx03/__type_traits/integral_constant.h>22#include <__cxx03/__type_traits/is_constructible.h>23#include <__cxx03/__type_traits/is_same.h>24#include <__cxx03/__type_traits/remove_cvref.h>25#include <__cxx03/__type_traits/remove_reference.h>26#include <__cxx03/cstddef>27 28#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)29#  pragma GCC system_header30#endif31 32_LIBCPP_BEGIN_NAMESPACE_STD33 34_LIBCPP_END_NAMESPACE_STD35 36#endif // _LIBCPP___CXX03___TUPLE_SFINAE_HELPERS_H37