From a1ada99d10bd0d4252d63cdb7fa2755adc89f3fb Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 8 Dec 2019 05:28:07 +0200 Subject: [PATCH] Fix mp_invoke_q examples --- doc/mp11/utility.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/mp11/utility.adoc b/doc/mp11/utility.adoc index 1221242..386baee 100644 --- a/doc/mp11/utility.adoc +++ b/doc/mp11/utility.adoc @@ -257,19 +257,19 @@ using R1 = mp_transform_q, L1>; using LQ = mp_list, mp_quote>; template using is_const_and_volatile = - mp_all>>; + mp_apply>>; ``` .Using mp_invoke_q to invoke a list of metafunctions, technique 2 ``` template using is_const_and_volatile = - mp_all, LQ>>; + mp_apply, LQ>>; ``` .Using mp_invoke_q to invoke a list of metafunctions, technique 3 ``` template using is_const_and_volatile = - mp_all>>; + mp_apply>>; ``` ## mp_not_fn