From ef8380aef149fe39b2913c4a1678470db2eac1d4 Mon Sep 17 00:00:00 2001 From: PabloMK7 Date: Sat, 8 Mar 2025 22:54:50 +0100 Subject: [PATCH] Fix lift_sequence in msys2 --- externals/mcl/include/mcl/mp/typelist/lift_sequence.hpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/externals/mcl/include/mcl/mp/typelist/lift_sequence.hpp b/externals/mcl/include/mcl/mp/typelist/lift_sequence.hpp index ba2617b8..d1070dfa 100644 --- a/externals/mcl/include/mcl/mp/typelist/lift_sequence.hpp +++ b/externals/mcl/include/mcl/mp/typelist/lift_sequence.hpp @@ -5,6 +5,7 @@ #pragma once #include +#include #include "mcl/mp/typelist/list.hpp" @@ -20,6 +21,11 @@ struct lift_sequence_impl> { using type = list...>; }; +template +struct lift_sequence_impl> { + using type = list...>; +}; + } // namespace detail /// Lifts values in value list VL to create a type list.