Skip to content

Commit c4cf83b

Browse files
committed
Avoid adl in tuple_cat
1 parent ff5a412 commit c4cf83b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/tv/tuple_cat.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ constexpr auto impl(
6363
export template<tuple_like... Tuples>
6464
requires(... and bounded::constructible_from<std::decay_t<Tuples>, Tuples &&>)
6565
constexpr auto tuple_cat(Tuples && ... tuples) {
66-
constexpr auto indexes = make_indexes(tuple_size<Tuples>...);
66+
constexpr auto indexes = ::tv::make_indexes(tuple_size<Tuples>...);
6767
return impl<indexes>(
6868
tv::tie(OPERATORS_FORWARD(tuples)...),
6969
std::make_index_sequence<indexes.size()>()

0 commit comments

Comments
 (0)