1
0
forked from boostorg/mp11

Add mp_map_replace.

This commit is contained in:
Peter Dimov
2016-11-17 03:38:24 +02:00
parent 4a7008562f
commit 42405ac701
5 changed files with 89 additions and 3 deletions

View File

@@ -48,8 +48,6 @@ namespace detail
template<template<class...> class F, class... L> struct mp_transform_impl;
template<template<class...> class F, class... L> using mp_transform = typename mp_transform_impl<F, L...>::type;
template<template<class...> class F, template<class...> class L, class... T> struct mp_transform_impl<F, L<T...>>
{
using type = L<F<T>...>;