aboutsummaryrefslogtreecommitdiff
path: root/contrib/llvm-project/libcxx/include/__tuple/tuple_indices.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/llvm-project/libcxx/include/__tuple/tuple_indices.h')
-rw-r--r--contrib/llvm-project/libcxx/include/__tuple/tuple_indices.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/llvm-project/libcxx/include/__tuple/tuple_indices.h b/contrib/llvm-project/libcxx/include/__tuple/tuple_indices.h
index 18666d5948c9..501e711255ec 100644
--- a/contrib/llvm-project/libcxx/include/__tuple/tuple_indices.h
+++ b/contrib/llvm-project/libcxx/include/__tuple/tuple_indices.h
@@ -21,13 +21,13 @@
_LIBCPP_BEGIN_NAMESPACE_STD
-template <size_t...> struct __tuple_indices {};
+template <size_t...>
+struct __tuple_indices {};
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;
+struct __make_tuple_indices {
+ static_assert(_Sp <= _Ep, "__make_tuple_indices input error");
+ typedef __make_indices_imp<_Ep, _Sp> type;
};
_LIBCPP_END_NAMESPACE_STD