| //===----------------------------------------------------------------------===// | |
| // | |
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | |
| // See https://llvm.org/LICENSE.txt for license information. | |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | |
| // SPDX-FileCopyrightText: Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. | |
| // | |
| //===----------------------------------------------------------------------===// | |
| _LIBCUDACXX_BEGIN_NAMESPACE_STD | |
| template <size_t _Ep, size_t _Sp = 0> | |
| struct __make_tuple_indices | |
| { | |
| static_assert(_Sp <= _Ep, "__make_tuple_indices input error"); | |
| typedef __make_indices_imp<_Ep, _Sp> type; | |
| }; | |
| template <size_t _Ep, size_t _Sp = 0> | |
| using __make_tuple_indices_t = typename __make_tuple_indices<_Ep, _Sp>::type; | |
| _LIBCUDACXX_END_NAMESPACE_STD | |