summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--compat/meta.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/meta.hpp b/compat/meta.hpp
index 4dec8bbb..7956ba3c 100644
--- a/compat/meta.hpp
+++ b/compat/meta.hpp
@@ -39,7 +39,7 @@ namespace meta::detail {
template<typename, typename> struct cons_;
- template<template<typename...> class t, typename x, typename... xs>
+ template<typename x, template<typename...> class t, typename... xs>
struct cons_<x, t<xs...>>
{
using type = t<x, xs...>;