From d8e5f33458d59fcca1cb0babec00ad7eaef95585 Mon Sep 17 00:00:00 2001 From: Bruno Dutra Date: Wed, 5 Feb 2020 21:45:41 +0100 Subject: [PATCH] avoid ambiguous template instantiation with sort --- include/metal/list/sort.hpp | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/include/metal/list/sort.hpp b/include/metal/list/sort.hpp index 9b953eea..edd361c1 100644 --- a/include/metal/list/sort.hpp +++ b/include/metal/list/sort.hpp @@ -142,18 +142,6 @@ namespace metal { using type = _merge_impl; }; - template - struct _merge, z> { - template class expr> - using type = _merge_impl, z, expr>; - }; - - template - struct _merge, y, z> { - template class expr> - using type = _merge_impl, y, z, expr>; - }; - template struct _sort_impl { using beg = number<0>;