From a3a0d6a1fa880b324576bb073637e021c57b0e65 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Tue, 24 Feb 2015 16:51:37 +0100 Subject: Replaced `utility::defer_eval` with placeholder-less `Apply` * usage of `Apply` sans placeholders was already possible and as such duplicated `utility::defer_eval` * renamed `apply_none`'s type alias from to `type` to enable combining it with `Eval` --- src/utility/predicate.h | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'src/utility/predicate.h') diff --git a/src/utility/predicate.h b/src/utility/predicate.h index e84b18f..b185759 100644 --- a/src/utility/predicate.h +++ b/src/utility/predicate.h @@ -3,6 +3,7 @@ #include "conditional/if.h" #include "operation/logic.h" +#include "function/apply.h" namespace tav { @@ -21,14 +22,6 @@ struct predicate_assurance { >; }; -template < - template class Function, - typename... Arguments -> -struct defer_eval { - typedef Function type; -}; - template < template class Predicate, template class Charge, @@ -38,7 +31,7 @@ struct predicate_guard { template using check = Eval>, - defer_eval, + Apply, Surrogate >>; }; -- cgit v1.2.3