Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
mingxwa committed Mar 20, 2024
1 parent 121b36b commit 0c4dc56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proxy.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ concept tuple_like =
template <template <class...> class T, class TL, class Is> struct instantiated;
template <template <class...> class T, class TL, std::size_t... Is>
struct instantiated<T, TL, std::index_sequence<Is...>>
: std::type_identity<T<std::tuple_element_t<Is, TL>...>> {};
{ using type = T<std::tuple_element_t<Is, TL>...>; };
template <template <class...> class T, class TL>
using instantiated_t = typename instantiated<
T, TL, std::make_index_sequence<std::tuple_size_v<TL>>>::type;
Expand Down

0 comments on commit 0c4dc56

Please sign in to comment.