1
0
forked from boostorg/mp11

Add mp_quote_trait

This commit is contained in:
Peter Dimov
2017-06-26 16:07:23 +03:00
parent a81745308c
commit d5e39913c8
5 changed files with 60 additions and 1 deletions
+6
View File
@@ -116,6 +116,12 @@ template<template<class...> class F> struct mp_quote
template<class... T> using fn = typename mp_defer<F, T...>::type;
};
// mp_quote_trait
template<template<class...> class F> struct mp_quote_trait
{
template<class... T> using fn = typename F<T...>::type;
};
// mp_invoke
#if BOOST_WORKAROUND( BOOST_MSVC, < 1900 )